From 9e172e33676d9e2d80c5c319b1e8a4335b760646 Mon Sep 17 00:00:00 2001 From: jrobrien91 Date: Mon, 22 Jan 2024 17:36:15 -0500 Subject: [PATCH 1/4] ENH: updates to the gluing notebook --- .../concatinate_file.ipynb | 15943 +++++++++++++++- 1 file changed, 15696 insertions(+), 247 deletions(-) diff --git a/notebooks/gluing_and_inventory/concatinate_file.ipynb b/notebooks/gluing_and_inventory/concatinate_file.ipynb index bdb4c2f..b20bae7 100644 --- a/notebooks/gluing_and_inventory/concatinate_file.ipynb +++ b/notebooks/gluing_and_inventory/concatinate_file.ipynb @@ -2,7 +2,6 @@ "cells": [ { "cell_type": "markdown", - "id": "83599d36", "metadata": {}, "source": [ "# Gluing and Merging\n", @@ -12,387 +11,15837 @@ }, { "cell_type": "code", - "execution_count": null, - "id": "651b9cf0-c8bb-4ccc-90bd-80624845243a", + "execution_count": 1, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + } + ], "source": [ + "import warnings\n", + "warnings.filterwarnings(\"ignore\", category=DeprecationWarning) \n", + "\n", "import os\n", - "import pyart\n", - "from matplotlib import pyplot as plt\n", - "import numpy as np\n", "import time\n", "import datetime\n", - "%matplotlib inline" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "3e7792af-42a1-42d1-8af7-8f026069eaf5", - "metadata": {}, - "outputs": [], - "source": [ - "data_dir = '/eagle/projects/CPOL/SAIL/202111/'\n", - "all_files = os.listdir(data_dir)\n", - "all_files.sort()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "ad702eaa-057e-4296-b2a0-707712dbace1", - "metadata": {}, - "outputs": [], - "source": [ - "base_scan_ppi = '1_PPI.nc'\n", - "ppi_pattern = 'PPI.nc'\n", - "base_scans = []\n", - "volumes = []\n", - "ppis = []\n", - "in_volume = False\n", - "for file in all_files:\n", - " if ppi_pattern in file:\n", - " ppis.append(file)\n", - " if base_scan_ppi in file:\n", - " base_scans.append(file)\n", - " \n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f852f1eb-4e96-4989-a461-6bfa7d7d9b85", - "metadata": {}, - "outputs": [], - "source": [ - "n_tilts = 8" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "e669b513-4038-4baa-a433-c23a6a15ec9f", - "metadata": {}, - "outputs": [], - "source": [ - "index = np.where(np.array(ppis) == base_scans[0])[0][0]\n", - "print(index)\n", - "print(ppis[index: index+n_tilts])" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "d9962404-23d2-4932-a674-c341ffcb3eb6", - "metadata": {}, - "outputs": [], - "source": [ - "volumes = []\n", - "for base in base_scans:\n", - " base_scan_index = np.where(np.array(ppis) == base)[0][0]\n", - " #print(base_scan_index)\n", - " volume = ppis[base_scan_index: base_scan_index+n_tilts]\n", - " volumes.append(volume)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "e2ce11e5-cbe0-4417-9519-5f79c3a8bbbb", - "metadata": {}, - "outputs": [], - "source": [ - "volumes[0]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "e1c0a37e-c88e-4cd9-931b-1ef3d5a50602", - "metadata": {}, - "outputs": [], - "source": [ - "base_radar = pyart.io.read(data_dir+volumes[0][0])\n", - "radars = [pyart.io.read(data_dir+sw) for sw in volumes[0][1::]]" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "1d613986-b4b8-460b-98e2-772c092c3658", - "metadata": {}, - "outputs": [], - "source": [ - "base_radar.elevation['data'].mean()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "9515ebbe-c020-4745-aee7-bd05dab4bd98", - "metadata": {}, - "outputs": [], - "source": [ - "radars" + "import numpy as np\n", + "import xarray as xr\n", + "\n", + "from matplotlib import pyplot as plt\n", + "from dask.distributed import Client, LocalCluster, progress\n", + "\n", + "import pyart" ] }, { - "cell_type": "code", - "execution_count": null, - "id": "bbb380af-132a-4b29-903b-64d0f4c85761", + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "for rad in radars:\n", - " print(rad.elevation['data'].mean())\n", - " print(rad.fixed_angle['data'])" + "## Define Helper Functions" ] }, { "cell_type": "code", - "execution_count": null, - "id": "d8392dfa-9f31-44a0-9345-7d2422605a2f", + "execution_count": 2, "metadata": {}, "outputs": [], "source": [ - "for rad in radars:\n", - " base_radar = pyart.util.join_radar(base_radar, rad)" + "def glue_fix(nfile):\n", + " \n", + " status = 'SUCCESS: ' + str(nfile)\n", + " \n", + " month = \"202112\"\n", + " OUTPUT = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/\" + month + \"_glued/\"\n", + " encodings = {'DBZ' : {'_FillValue' : -32768.0},\n", + " 'VEL' : {'_FillValue' : -32768.0},\n", + " 'WIDTH' : {'_FillValue' : -32768.0},\n", + " 'ZDR' : {'_FillValue' : -32768.0},\n", + " 'PHIDP' : {'_FillValue' : -32768.0},\n", + " 'RHOHV' : {'_FillValue' : -32768.0},\n", + " 'NCP' : {'_FillValue' : -32768.0},\n", + " 'DBZhv' : {'_FillValue' : -32768.0},\n", + " }\n", + " # load the file\n", + " try:\n", + " ds = xr.open_dataset(nfile, mask_and_scale=False)\n", + " except:\n", + " ds = None\n", + " status = \"FALIURE: - can't open file: \" + str(nfile)\n", + " \n", + " if ds is not None:\n", + " # Loop over all the variables; update the FillValue and Data Type\n", + " for var in encodings:\n", + " # Convert all values within the DataArray to the correct Fill Value\n", + " # NOTE: xr.where(condition, value_when_condition_is_not_met); so if every index is MVC, check for opposite\n", + " mask = ds[var].where(ds[var] > -99800, encodings[var]['_FillValue'])\n", + " # Append the corrected data to the variable.\n", + " ds[var] = mask\n", + " # Define output name\n", + " nout = OUTPUT + nfile.split('/')[-1]\n", + " # Save the file\n", + " try:\n", + " ds.to_netcdf(path=nout)\n", + " except:\n", + " status = \"FAILURE - can't write: \" + str(nout)\n", + " \n", + " return status" ] }, { "cell_type": "code", - "execution_count": null, - "id": "221e142c-cab5-4058-88d9-1ac58a91ba2f", + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ - "base_radar.nsweeps" + "def radar_glue(b_radar, radar_list):\n", + " if radar_list is not None:\n", + " for rad in radar_list:\n", + " b_radar = pyart.util.join_radar(b_radar, rad)\n", + " del rad\n", + " else:\n", + " b_radar = None\n", + " return b_radar" ] }, { "cell_type": "code", - "execution_count": null, - "id": "b1c45ce3-2458-4007-bf04-92c8751ae2a0", + "execution_count": 4, "metadata": {}, "outputs": [], "source": [ - "base_radar.info()" + "def volume_from_list(base_radar, vlist, base_dir):\n", + " try:\n", + " radars = [pyart.io.read(base_dir+sw) for sw in vlist[1::]]\n", + " except:\n", + " radars = None\n", + " return radar_glue(base_radar, radars)" ] }, { "cell_type": "code", - "execution_count": null, - "id": "41046e3f-af62-4c2d-a43d-dd4e5e113f67", + "execution_count": 5, "metadata": {}, "outputs": [], "source": [ - "base_radar.fixed_angle" + "def granule(Dvolume):\n", + " n_tilts = 8\n", + " month = \"202112\"\n", + " data_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/nc_files/\" + month + \"_nc/\"\n", + " out_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/\" + month + \"_glued/\"\n", + " if len(Dvolume) == 8:\n", + " try:\n", + " base_rad = pyart.io.read(data_dir+Dvolume[0])\n", + " except:\n", + " base_rad = None\n", + " \n", + " if base_rad is not None:\n", + " out_radar = volume_from_list(base_rad, Dvolume, data_dir)\n", + " if out_radar is not None:\n", + " ff = time.strptime(out_radar.time['units'][14:], '%Y-%m-%dT%H:%M:%SZ')\n", + " dt = datetime.datetime.fromtimestamp(time.mktime(ff)) + datetime.timedelta(seconds= int(out_radar.time['data'][0]))\n", + " strform = dt.strftime(out_dir + 'xprecipradar_guc_volume_%Y%m%d-%H%M%S.b1.nc')\n", + " #FIX for join issue.. to be fixed in Py-ART\n", + " out_radar.sweep_mode['data']=np.tile(base_rad.sweep_mode['data'], n_tilts)\n", + " try:\n", + " pyart.io.write_cfradial(strform, out_radar, arm_time_variables=True)\n", + " print('SUCCESS', strform)\n", + " except:\n", + " print('FAILURE', strform)\n", + " # Delete the radars to free up memory\n", + " del base_rad\n", + " del out_radar" ] }, { - "cell_type": "code", - "execution_count": null, - "id": "2d9ae7e5-01e6-4a7d-9a23-48844b85cf93", + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "def radar_glue(b_radar, radar_list):\n", - " for rad in radar_list:\n", - " b_radar = pyart.util.join_radar(b_radar, rad)\n", - " \n", - " return b_radar" + "## Locate all the PPI scans within the Desired Directories" ] }, { "cell_type": "code", - "execution_count": null, - "id": "dcba6886-f6f2-4dfa-bd29-1b46a8c1c156", + "execution_count": 6, "metadata": {}, "outputs": [], "source": [ - "def volume_from_list(vlist, base_dir):\n", - " base_radar = pyart.io.read(base_dir+vlist[0])\n", - " radars = [pyart.io.read(base_dir+sw) for sw in vlist[1::]]\n", - " return radar_glue(base_radar, radars)" + "month = \"202112\"\n", + "data_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/nc_files/\" + month + \"_nc/\"\n", + "out_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/\" + month + \"_glued/\"" ] }, { "cell_type": "code", - "execution_count": null, - "id": "4f4cb5cb-c736-4e97-99bc-62d7f4c9e4b7", + "execution_count": 7, "metadata": {}, "outputs": [], "source": [ - "fourth_volume = volume_from_list(volumes[400], data_dir)" + "all_files = os.listdir(data_dir)\n", + "all_files.sort()" ] }, { "cell_type": "code", - "execution_count": null, - "id": "2b738062-9791-4682-862f-7d891b03b1f5", + "execution_count": 8, "metadata": {}, "outputs": [], "source": [ - "figme = plt.figure(figsize=[15,10])\n", - "display = pyart.graph.RadarMapDisplay(fourth_volume)\n", - " \n", - "# Add our reflectivity (DBZ) field to the plot, including our gatefilter\n", - "display.plot_ppi_map('DBZ', 0, vmin=-20, vmax=40.)\n" + "base_scan_ppi = '1_PPI.nc'\n", + "ppi_pattern = 'PPI.nc'\n", + "base_scans = []\n", + "volumes = []\n", + "ppis = []\n", + "in_volume = False\n", + "for file in all_files:\n", + " if ppi_pattern in file:\n", + " ppis.append(file)\n", + " if base_scan_ppi in file:\n", + " base_scans.append(file)\n", + " " ] }, { "cell_type": "code", - "execution_count": null, - "id": "92d76feb-83f7-4be7-acc5-b307d62f4b85", + "execution_count": 9, "metadata": {}, "outputs": [], "source": [ - "figme = plt.figure(figsize=[15,10])\n", - "display = pyart.graph.RadarMapDisplay(fourth_volume)\n", - " \n", - "# Add our reflectivity (DBZ) field to the plot, including our gatefilter\n", - "display.plot_ppi_map('DBZ', 7, vmin=-20, vmax=40.)\n" + "n_tilts = 8" ] }, { "cell_type": "code", - "execution_count": null, - "id": "25973669-21f3-480b-bdd5-34c0549daf96", + "execution_count": 10, "metadata": {}, "outputs": [], "source": [ - "for vvl in volumes[0:1]:\n", - " if len(vvl) == n_tilts:\n", - " out_radar = volume_from_list(vvl, data_dir)\n", - " print(out_radar.time['units'][14:])\n", - " ff = time.strptime(out_radar.time['units'][14:], '%Y-%m-%dT%H:%M:%SZ')\n", - " dt = datetime.datetime.fromtimestamp(time.mktime(ff)) + datetime.timedelta(seconds= int(out_radar.time['data'][0]))\n", - " strform = dt.strftime('/eagle/projects/CPOL/SAIL/202111_glued/xprecipradar_guc_volume_%Y%m%d-%H%M%S.b1.nc')\n", - " print(strform)\n", - " #FIX for join issue.. to be fixed in Py-ART\n", - " out_radar.sweep_mode['data']=np.tile(radars[0].sweep_mode['data'], n_tilts)\n", - " pyart.io.write_cfradial(strform, out_radar)\n", - " " + "volumes = []\n", + "for base in base_scans:\n", + " base_scan_index = np.where(np.array(ppis) == base)[0][0]\n", + " #print(base_scan_index)\n", + " volume = ppis[base_scan_index: base_scan_index+n_tilts]\n", + " volumes.append(volume)" ] }, { - "cell_type": "code", - "execution_count": null, - "id": "d457e2dd-8869-4566-8b34-24c161f32ca9", + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "acompletelynewradar = pyart.io.read('/eagle/projects/CPOL/SAIL/202111_glued/xprecipradar_guc_volume_20211110-000110.b1.nc')" + "## Try Single Volume to Verify Process" ] }, { "cell_type": "code", - "execution_count": null, - "id": "09e46d5c-f226-45f2-95ae-6cfee57908d1", + "execution_count": 11, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "['gucxprecipradarS2.00.20211201.000248.raw.csu.sail-20211201-000248_40208_22_1_PPI.nc',\n", + " 'gucxprecipradarS2.00.20211201.000320.raw.csu.sail-20211201-000320_40209_22_2_PPI.nc',\n", + " 'gucxprecipradarS2.00.20211201.000352.raw.csu.sail-20211201-000352_40210_22_4_PPI.nc',\n", + " 'gucxprecipradarS2.00.20211201.000424.raw.csu.sail-20211201-000424_40211_22_6_PPI.nc',\n", + " 'gucxprecipradarS2.00.20211201.000456.raw.csu.sail-20211201-000456_40212_22_8_PPI.nc',\n", + " 'gucxprecipradarS2.00.20211201.000528.raw.csu.sail-20211201-000528_40213_22_10_PPI.nc',\n", + " 'gucxprecipradarS2.00.20211201.000600.raw.csu.sail-20211201-000600_40214_22_12_PPI.nc',\n", + " 'gucxprecipradarS2.00.20211201.000632.raw.csu.sail-20211201-000632_40215_22_15_PPI.nc']" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "figme = plt.figure(figsize=[15,10])\n", - "display = pyart.graph.RadarMapDisplay(acompletelynewradar)\n", - " \n", - "# Add our reflectivity (DBZ) field to the plot, including our gatefilter\n", - "display.plot_ppi_map('DBZ', 7, vmin=-20, vmax=40.)\n" + "volumes[0]" ] }, { "cell_type": "code", - "execution_count": null, - "id": "dfdcd3ae-750f-49f3-bcf3-b03097b65f4f", + "execution_count": 12, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000248.b1.nc\n", + "CPU times: user 9.7 s, sys: 1.62 s, total: 11.3 s\n", + "Wall time: 13 s\n" + ] + } + ], "source": [ - "def granule(Dvolume):\n", - " data_dir = '/eagle/projects/CPOL/SAIL/202111/'\n", - " if len(Dvolume) == 8:\n", - " base_rad = pyart.io.read(data_dir+Dvolume[0])\n", - " out_radar = volume_from_list(Dvolume, data_dir)\n", - " print(out_radar.time['units'][14:])\n", - " ff = time.strptime(out_radar.time['units'][14:], '%Y-%m-%dT%H:%M:%SZ')\n", - " dt = datetime.datetime.fromtimestamp(time.mktime(ff)) + datetime.timedelta(seconds= int(out_radar.time['data'][0]))\n", - " strform = dt.strftime('/eagle/projects/CPOL/SAIL/202111_glued/xprecipradar_guc_volume_%Y%m%d-%H%M%S.b1.nc')\n", - " print(strform)\n", - " #FIX for join issue.. to be fixed in Py-ART\n", - " out_radar.sweep_mode['data']=np.tile(base_rad.sweep_mode['data'], n_tilts)\n", - " pyart.io.write_cfradial(strform, out_radar)" + "%%time\n", + "granule(volumes[0])" ] }, { - "cell_type": "code", - "execution_count": null, - "id": "c9edef51-12e1-4b43-9245-ce7b24767a71", + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "granule(volumes[0])" + "## Start a Dask Cluster" ] }, { "cell_type": "code", - "execution_count": null, - "id": "3c30bfa8-c79b-4b52-a56c-985a9fc32461", + "execution_count": 13, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/ccsopen/home/jrobrien/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/tornado/platform/asyncio.py:193: DeprecationWarning: There is no current event loop\n", + " old_loop = asyncio.get_event_loop()\n", + "/ccsopen/home/jrobrien/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/node.py:183: UserWarning: Port 8787 is already in use.\n", + "Perhaps you already have a cluster running?\n", + "Hosting the HTTP server on port 34861 instead\n", + " warnings.warn(\n", + "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-enpmlc14', purging\n", + "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-9ucyg2ag', purging\n", + "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-840d9c4k', purging\n", + "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-dpkjem6_', purging\n", + "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-2hzcvp1u', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-kid4uhz8', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-5v8thwu9', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-ocg450dr', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-_dalutpj', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-gqxetqcd', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-1qhxwio2', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-t0plmfqn', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-xvbgoadj', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-w4751nt8', purging\n", + "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-vetgjh44', purging\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "
\n", + "
\n", + "

Client

\n", + "

Client-07f49605-f8d2-11ed-92da-b8cb29b12334

\n", + " \n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "
Connection method: Cluster objectCluster type: distributed.LocalCluster
\n", + " Dashboard: http://127.0.0.1:34861/status\n", + "
\n", + "\n", + " \n", + "
\n", + "

Cluster Info

\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

LocalCluster

\n", + "

8f8737f8

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + "\n", + " \n", + "
\n", + " Dashboard: http://127.0.0.1:34861/status\n", + " \n", + " Workers: 16\n", + "
\n", + " Total threads: 128\n", + " \n", + " Total memory: 251.48 GiB\n", + "
Status: runningUsing processes: True
\n", + "\n", + "
\n", + " \n", + "

Scheduler Info

\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + "

Scheduler

\n", + "

Scheduler-b300a11d-f70e-44fc-9e70-a5c16a62938d

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + " Comm: tcp://127.0.0.1:43125\n", + " \n", + " Workers: 16\n", + "
\n", + " Dashboard: http://127.0.0.1:34861/status\n", + " \n", + " Total threads: 128\n", + "
\n", + " Started: Just now\n", + " \n", + " Total memory: 251.48 GiB\n", + "
\n", + "
\n", + "
\n", + "\n", + "
\n", + " \n", + "

Workers

\n", + "
\n", + "\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 0

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:42045\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:33539/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:42247\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-dhdlt8g3\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 1

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:39827\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:39591/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:43215\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-xur55u64\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 2

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:33585\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:39011/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:43083\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-yxy9rhoo\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 3

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:35203\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:34359/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:33325\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-ljqqntc4\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 4

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:37037\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:41969/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:42083\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-kv0pv31f\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 5

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:34649\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:42455/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:43063\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-wz078f29\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 6

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:39881\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:33483/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:43181\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-eeyzhmrv\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 7

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:35267\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:44933/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:46203\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-vgwdq4cw\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 8

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:44113\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:42319/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:40517\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-gzzibnmf\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 9

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:38177\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:45883/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:38887\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-rw30o7z5\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 10

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:34551\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:40115/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:38083\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-987uxl9b\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 11

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:39009\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:42655/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:35345\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-pa64fvsb\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 12

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:35469\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:38937/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:37095\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-1c6k9_ln\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 13

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:41115\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:36281/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:41019\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-oy3k4oq_\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 14

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:33927\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:39397/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:33319\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-erdteznf\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "

Worker: 15

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "\n", + " \n", + "\n", + " \n", + "\n", + "
\n", + " Comm: tcp://127.0.0.1:34877\n", + " \n", + " Total threads: 8\n", + "
\n", + " Dashboard: http://127.0.0.1:36103/status\n", + " \n", + " Memory: 15.72 GiB\n", + "
\n", + " Nanny: tcp://127.0.0.1:46039\n", + "
\n", + " Local directory: /tmp/dask-worker-space/worker-bmces1jz\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "\n", + "
\n", + "
\n", + "\n", + "
\n", + "
\n", + "
\n", + "
\n", + " \n", + "\n", + "
\n", + "
" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "from dask.distributed import Client, LocalCluster\n", "\n", "cluster = LocalCluster()\n", "\n", - "cluster.scale(16) # Sets the number of workers to 10\n", - "cluster.adapt(minimum=8, maximum=16)\n", "client = Client(cluster)\n", "client" ] }, { - "cell_type": "code", - "execution_count": null, - "id": "2a6b9e7c-4d3f-4abb-af31-b0eebeee8e15", + "cell_type": "markdown", "metadata": {}, - "outputs": [], "source": [ - "future = client.map(granule, volumes)" + "## Glue the Files" ] }, { "cell_type": "code", - "execution_count": null, - "id": "f95dd65f-2812-4f53-a550-9ea01ed59e4e", + "execution_count": 14, "metadata": {}, "outputs": [], "source": [ - "my_data = client.gather(future)" + "future = client.map(granule, volumes)" ] }, { "cell_type": "code", - "execution_count": null, - "id": "08254fae-3631-4b21-8a83-29dc84afebac", + "execution_count": 15, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 14:54:45,718 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 14:55:46,445 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 14:56:02,115 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:01:53,708 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:02:43,405 - distributed.nanny - WARNING - Restarting worker\n" + ] + }, + { + "ename": "KilledWorker", + "evalue": "Attempted to run task granule-4902ee5ab80d67acd599409b8a32b3c3 on 3 different workers, but all those workers died while running it. The last worker that attempt to run the task was tcp://127.0.0.1:37037. Inspecting worker logs is often a good next step to diagnose what went wrong. For more information see https://distributed.dask.org/en/stable/killed.html.", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mKilledWorker\u001b[0m Traceback (most recent call last)", + "File \u001b[0;32m:1\u001b[0m\n", + "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/client.py:2226\u001b[0m, in \u001b[0;36mClient.gather\u001b[0;34m(self, futures, errors, direct, asynchronous)\u001b[0m\n\u001b[1;32m 2224\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 2225\u001b[0m local_worker \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[0;32m-> 2226\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msync\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 2227\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_gather\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2228\u001b[0m \u001b[43m \u001b[49m\u001b[43mfutures\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2229\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43merrors\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2230\u001b[0m \u001b[43m \u001b[49m\u001b[43mdirect\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdirect\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2231\u001b[0m \u001b[43m \u001b[49m\u001b[43mlocal_worker\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlocal_worker\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2232\u001b[0m \u001b[43m \u001b[49m\u001b[43masynchronous\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43masynchronous\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2233\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/utils.py:339\u001b[0m, in \u001b[0;36mSyncMethodMixin.sync\u001b[0;34m(self, func, asynchronous, callback_timeout, *args, **kwargs)\u001b[0m\n\u001b[1;32m 337\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m future\n\u001b[1;32m 338\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 339\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msync\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 340\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloop\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfunc\u001b[49m\u001b[43m,\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[43mcallback_timeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcallback_timeout\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[43mkwargs\u001b[49m\n\u001b[1;32m 341\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", + "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/utils.py:406\u001b[0m, in \u001b[0;36msync\u001b[0;34m(loop, func, callback_timeout, *args, **kwargs)\u001b[0m\n\u001b[1;32m 404\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m error:\n\u001b[1;32m 405\u001b[0m typ, exc, tb \u001b[38;5;241m=\u001b[39m error\n\u001b[0;32m--> 406\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m exc\u001b[38;5;241m.\u001b[39mwith_traceback(tb)\n\u001b[1;32m 407\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 408\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", + "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/utils.py:379\u001b[0m, in \u001b[0;36msync..f\u001b[0;34m()\u001b[0m\n\u001b[1;32m 377\u001b[0m future \u001b[38;5;241m=\u001b[39m asyncio\u001b[38;5;241m.\u001b[39mwait_for(future, callback_timeout)\n\u001b[1;32m 378\u001b[0m future \u001b[38;5;241m=\u001b[39m asyncio\u001b[38;5;241m.\u001b[39mensure_future(future)\n\u001b[0;32m--> 379\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01myield\u001b[39;00m future\n\u001b[1;32m 380\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m:\n\u001b[1;32m 381\u001b[0m error \u001b[38;5;241m=\u001b[39m sys\u001b[38;5;241m.\u001b[39mexc_info()\n", + "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/tornado/gen.py:762\u001b[0m, in \u001b[0;36mRunner.run\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 759\u001b[0m exc_info \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 761\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 762\u001b[0m value \u001b[38;5;241m=\u001b[39m \u001b[43mfuture\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mresult\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 763\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m:\n\u001b[1;32m 764\u001b[0m exc_info \u001b[38;5;241m=\u001b[39m sys\u001b[38;5;241m.\u001b[39mexc_info()\n", + "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/client.py:2089\u001b[0m, in \u001b[0;36mClient._gather\u001b[0;34m(self, futures, errors, direct, local_worker)\u001b[0m\n\u001b[1;32m 2087\u001b[0m exc \u001b[38;5;241m=\u001b[39m CancelledError(key)\n\u001b[1;32m 2088\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 2089\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m exception\u001b[38;5;241m.\u001b[39mwith_traceback(traceback)\n\u001b[1;32m 2090\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m exc\n\u001b[1;32m 2091\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m errors \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mskip\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n", + "\u001b[0;31mKilledWorker\u001b[0m: Attempted to run task granule-4902ee5ab80d67acd599409b8a32b3c3 on 3 different workers, but all those workers died while running it. The last worker that attempt to run the task was tcp://127.0.0.1:37037. Inspecting worker logs is often a good next step to diagnose what went wrong. For more information see https://distributed.dask.org/en/stable/killed.html." + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:03:25,375 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:03:44,790 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:04:20,309 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:07:19,983 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-201800.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-203919.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-203400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-205520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-204959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-204440.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021703.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023801.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103200.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-085121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-051727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113906.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134044.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-155906.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220359.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210928.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222909.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-232752.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004734.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023227.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031013.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-040032.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051151.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134456.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000948.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-053701.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-005146.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073015.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093605.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095252.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-123626.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-153236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-180747.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-184533.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-214145.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-174959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-174439.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-175519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-172318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-172838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-173359.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-180039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-173919.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-024212.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-060335.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175633.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124200.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073427.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224144.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095703.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-074250.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-120254.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124038.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-183258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005443.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014503.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-032411.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064531.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210516.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165338.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215124.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-181159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-173826.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-150314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224029.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061331.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-071626.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-083155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-125157.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-141551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135452.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-143648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-204142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-212339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-121412.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-180502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-181737.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-180914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-181325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183012.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182149.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064943.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110945.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072316.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142651.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003047.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-011245.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-020717.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033934.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-083310.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-080800.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100115.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-114729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-082611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-162005.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-191202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-174357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230243.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-201456.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024050.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052837.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-072604.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-082858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084957.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020016.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-083722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-113744.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100939.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140431.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-120705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-144628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164806.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-173415.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-184944.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-210359.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212458.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073033.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-074307.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-072209.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-072621.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073856.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071345.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071757.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045217.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-085944.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-060746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-102336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-135730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-025859.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015030.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-201908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042954.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-043405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051602.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-165629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-171727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053825.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-130710.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-090807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235302.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-013755.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092330.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-050739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075525.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084133.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-131411.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154511.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200516.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233500.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015326.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-024347.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-072712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-072153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-065513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-070552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-071632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-073232.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-070032.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-071113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-005720.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065806.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-155455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-095003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144749.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185927.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003459.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022816.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-032659.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-160609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-231402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233049.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000834.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-025211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-074547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-085253.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074826.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125435.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-075650.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-191614.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-193712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200633.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094017.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-104312.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121528.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-151137.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194005.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-220243.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-003344.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-010718.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-031721.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-221125.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-221645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-223245.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-220605.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-222725.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-222205.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-224325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-223805.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-052842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012642.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042255.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063708.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204830.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231929.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-233615.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234439.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125847.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180044.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000537.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001812.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-014618.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022404.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-045052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085408.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-090643.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091507.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-113332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114156.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-132330.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-134450.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-133930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-135010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-133410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-131810.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-132850.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-131250.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030311.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-040608.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-050903.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-050040.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074415.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092042.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092905.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132809.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-093729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-232340.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-025738.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-020305.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044229.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-025036.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055511.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-133220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223321.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234850.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-045504.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151710.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-062721.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112921.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-082446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121116.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102625.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-101350.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-132646.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133920.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-134332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-141706.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-150726.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202614.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-174650.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-090222.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-092902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-091822.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-091302.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-092342.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-090742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-093942.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-093422.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-095415.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094140.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123749.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-133632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-162828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-140553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172300.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202320.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-061609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015442.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-032248.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044640.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062845.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110533.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-045916.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-025326.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-014329.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-041432.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-005309.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-032822.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044805.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122102.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-120004.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150435.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-155043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211751.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-233204.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-014207.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-062309.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-070505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-072152.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-104723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-110410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-123215.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-151549.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-045352.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-042843.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-043255.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-045804.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-043706.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-034510.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-075238.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000125.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150847.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-083846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-083434.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-152945.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-081747.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041308.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-013343.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-005558.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-065231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194829.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-065642.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154922.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-101802.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-195652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-050451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055923.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062433.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-093317.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-090356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145612.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-120416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-182554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-195809.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225419.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012932.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015853.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031836.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054524.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091055.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-172551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-105547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-184121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-222754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-223617.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-002109.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-032712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-025505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-055106.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-202030.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-094547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-233231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-231112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-064953.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-111646.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130136.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-135155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124901.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-135607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-153647.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163942.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-165217.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-232226.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215832.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234324.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-235559.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-002521.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-021425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-055645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-052723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114903.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-131707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-150159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163004.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223910.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-000715.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-224322.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-043817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-112804.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-235440.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024226.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-031148.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-072740.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073603.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 15:12:37,533 - distributed.nanny - WARNING - Restarting worker\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-214428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-215508.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-213907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220027.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-221108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-214948.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-221627.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101925.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-152534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-024624.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225831.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185515.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003911.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212615.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-182143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052550.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-041844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180456.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-082159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100238.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031424.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205241.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183829.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071740.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-040856.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-050328.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-080348.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084545.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-105958.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-090232.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-110822.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161432.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-162256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-162707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170453.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-174238.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-183709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-195240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213733.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000011.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:13:41,746 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:14:02,780 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:14:59,653 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:15:34,992 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:16:08,794 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:18:19,496 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-164622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-185913.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-212834.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-194738.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-083627.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-212751.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104434.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-210811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115430.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213321.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230951.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-003756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-072037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-041605.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-094724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-040330.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-093901.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-035506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-160042.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-170337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-171613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-185651.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-185240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220124.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-184416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-013520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-004048.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-015206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-041856.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043131.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-045641.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-060759.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-071916.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-081759.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-081348.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080524.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-082211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-090408.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095428.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-034627.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-123351.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-043509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-184441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-042719.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-125800.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-104449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-193756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-051315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043942.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031135.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-014741.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-025448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043530.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070218.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-130258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-081336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-195358.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141005.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-102748.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-201044.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215947.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231105.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234027.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-053248.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-011657.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-055347.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-105135.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-111234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121940.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-141254.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154059.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163531.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-180336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-181611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-232637.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-214557.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234736.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-235147.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-002932.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-034231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-060920.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-063429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-045350.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-074135.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115726.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-122647.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153944.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-045746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-230031.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-075224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-015625.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-224337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-050143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-193745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-233652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085820.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-213203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-033234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220947.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-005735.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-001538.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-033646.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013054.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023349.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-034058.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-035333.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-061158.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072728.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124612.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-162417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204418.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004323.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010833.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030601.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021540.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-035209.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041719.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-070054.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081623.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-171316.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-205948.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-221930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-004208.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 15:20:07,469 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:20:29,524 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:20:49,507 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:21:29,400 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:21:47,500 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:22:07,713 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:22:47,222 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-013640.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-124745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105430.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-101234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-130020.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-120137.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135040.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-174122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-181043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-184828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193436.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-201632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-222223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-203731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024638.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223458.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-013108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-011833.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-040208.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-041032.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-054701.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131136.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-113919.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134920.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145216.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-141019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-160746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-190805.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-174825.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-173139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-215140.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-221650.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-225023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-012535.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-025341.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-053716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-035224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-075542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-082052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131015.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-102229.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-114211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-133526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142133.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165338.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-110410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044640.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-222342.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230539.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-020150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-033407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042017.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-044527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-063018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065116.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065939.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-084842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-090116.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-095136.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114450.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-151846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-142414.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-145747.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-162552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193847.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112233.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-212219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-022830.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012642.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042255.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063708.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125847.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204830.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231929.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000537.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234439.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-045052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001812.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091507.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-070505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015326.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-104608.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-170749.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-235028.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-114331.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-222513.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 15:23:15,646 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:23:41,790 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:24:05,293 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:24:23,517 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:24:47,951 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:25:03,668 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:25:23,168 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:25:41,456 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:26:01,361 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-085544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-092507.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-092918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093741.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100252.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-110958.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-111410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-153000.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164942.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-102921.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-180512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-183844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-201100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-195002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-202335.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-210532.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-230710.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231533.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-232357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-005613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-235319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-000554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-021143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023654.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-040911.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-041322.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-044244.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-045519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142957.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-105603.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-200531.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-210414.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-140610.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-014329.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-065231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-065642.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154511.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194829.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-050040.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064943.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072316.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-174357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-201456.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015030.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-032248.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-074250.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033934.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-083310.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042131.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084133.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 15:26:16,634 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:26:32,176 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:26:49,574 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:27:09,817 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:27:29,008 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:27:57,052 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:28:18,043 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:28:31,899 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:28:47,541 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:29:04,496 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:29:31,958 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:29:54,115 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:30:03,040 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-100102.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-195922.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-214729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-082950.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-120838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-000840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-160902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-235246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180044.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-122543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212909.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-194711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000011.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-114729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045217.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124200.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164806.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212458.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-223617.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-011129.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 15:30:22,692 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:30:41,251 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:30:59,250 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:31:17,440 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:31:27,101 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:31:41,839 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:32:02,832 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:32:18,500 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:32:40,427 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-114210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-121757.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-011818.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-020717.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-153756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-175525.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-031101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-003001.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000248.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000700.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002347.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085408.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-070351.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050916.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-205006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021715.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132809.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105710.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-040608.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-090807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205241.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224144.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005031.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-120549.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005854.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-183553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124901.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 15:33:02,007 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:33:19,071 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:33:33,320 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:34:23,005 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:34:31,690 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:34:43,979 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:35:00,297 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:35:33,904 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:35:54,302 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:36:15,703 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:36:42,235 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:37:00,458 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:37:16,230 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:37:33,900 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:37:53,542 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:38:08,478 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:38:22,668 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:38:38,696 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:38:54,980 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:39:11,677 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:39:25,311 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:39:37,803 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:39:49,257 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:40:05,908 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:40:19,502 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:40:33,153 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:40:42,348 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 15:41:00,566 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 1668 in H5Aexists(): invalid object identifier\n", + " major: Invalid arguments to routine\n", + " minor: Inappropriate type\n", + " #001: H5VLint.c line 1749 in H5VL_vol_object(): invalid identifier type to function\n", + " major: Invalid arguments to routine\n", + " minor: Inappropriate type\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 1668 in H5Aexists(): invalid object identifier\n", + " major: Invalid arguments to routine\n", + " minor: Inappropriate type\n", + " #001: H5VLint.c line 1749 in H5VL_vol_object(): invalid identifier type to function\n", + " major: Invalid arguments to routine\n", + " minor: Inappropriate type\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-204307.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-050727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-021020.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-232954.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-012116.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-140035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-043021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092042.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-041844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103200.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125435.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134044.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185927.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212615.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231929.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095252.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091055.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194005.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015326.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-120137.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065116.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-124745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-151846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-162552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-171613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-181043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193436.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-011833.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003047.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-075250.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064544.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-042347.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-103339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-203602.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-164143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-010106.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-002652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-220605.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-094425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-025036.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234850.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133920.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121116.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015030.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-111646.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-135607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163942.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234324.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-011541.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234736.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-083155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-082159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073015.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165338.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-102336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001246.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 15:44:38,967 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.14 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 15:46:47,028 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-202210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-143908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-231406.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-212944.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-055527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-103359.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-150444.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-033118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033934.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-082446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213321.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-220655.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-085253.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-035506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-004048.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-060759.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-071916.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-011129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224852.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015738.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-054410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-101939.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103625.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-105723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-165805.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-180100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-171903.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164530.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-190805.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-191629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-221650.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-075301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-180056.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-104222.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-141800.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-212424.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-060436.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-092428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074415.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004323.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-130843.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-071214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-184416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-003756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-231814.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222458.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-045802.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-161729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-072449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030601.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-235440.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-094153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-023124.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-135332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-150902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-022419.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-113228.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-012006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-154521.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-215837.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-222347.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-075826.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-113223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-152722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-104717.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-190839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-200719.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-071402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-080722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-120203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-131643.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-135924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-211646.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-092222.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-071427.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-165228.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-233102.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-051247.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085820.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-233926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-114145.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-123629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-152945.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-012939.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-030423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-093729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185515.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092905.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202320.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110945.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051151.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-043405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075525.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061331.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-041154.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-010718.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-102802.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-130312.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-185941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-220415.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-022830.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-223336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-095719.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-041734.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-140858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-165235.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-193609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-202217.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-212100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-041617.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-042852.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-081108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-092639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-114914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-185933.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-070101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-230250.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-102223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-194130.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-112931.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-141716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-161855.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-045804.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050216.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-074702.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055923.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-160157.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-090036.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-232349.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-000220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-183709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-221622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-085944.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-135730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-020305.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022404.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031424.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022816.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092330.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-090643.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-104312.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-131822.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230951.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233049.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-025211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053135.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-060508.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-072037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-093901.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-102057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-191338.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-224322.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-013108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-035224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-222101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-211237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-175227.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-154933.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-171737.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-012819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-213327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-042843.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-065119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-070354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-131306.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-134639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-154409.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5Dio.c line 280 in H5Dwrite(): dset_id is not a dataset ID\n", + " major: Invalid arguments to routine\n", + " minor: Inappropriate type\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5D.c line 141 in H5Dcreate2(): unable to create dataset\n", + " major: Dataset\n", + " minor: Unable to create file\n", + " #001: H5VLcallback.c line 1806 in H5VL_dataset_create(): dataset create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 1771 in H5VL__dataset_create(): dataset create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_dataset.c line 73 in H5VL__native_dataset_create(): unable to create dataset\n", + " major: Dataset\n", + " minor: Unable to initialize object\n", + " #004: H5Dint.c line 396 in H5D__create_named(): unable to create and link to dataset\n", + " major: Dataset\n", + " minor: Unable to initialize object\n", + " #005: H5L.c line 1767 in H5L_link_object(): unable to create new link to object\n", + " major: Links\n", + " minor: Unable to initialize object\n", + " #006: H5L.c line 2009 in H5L__create_real(): can't insert link\n", + " major: Links\n", + " minor: Unable to insert object\n", + " #007: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #008: H5Gtraverse.c line 613 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Callback failed\n", + " #009: H5L.c line 1802 in H5L__link_cb(): name already exists\n", + " major: Links\n", + " minor: Object already exists\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 1668 in H5Aexists(): invalid object identifier\n", + " major: Invalid arguments to routine\n", + " minor: Inappropriate type\n", + " #001: H5VLint.c line 1749 in H5VL_vol_object(): invalid identifier type to function\n", + " major: Invalid arguments to routine\n", + " minor: Inappropriate type\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-081415.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-101135.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-153644.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-010220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-044035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-013915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-063551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-162417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-035209.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225831.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-101802.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-144628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-003927.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-003515.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-104608.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-100823.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-064253.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-042029.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-012124.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-080355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-054539.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064305.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-175529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-215544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-004622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-062042.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-101517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-112957.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-175824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-185709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-214840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-151446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204418.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041719.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234439.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081623.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145216.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-031019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-071336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-180445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-080807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-145804.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-194045.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-202845.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-031941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-081821.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-022626.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5D.c line 320 in H5Dclose(): not a dataset ID\n", + " major: Invalid arguments to routine\n", + " minor: Inappropriate type\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-022709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-063148.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-155401.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-141124.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-224454.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-131703.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-152611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-081348.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044229.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-134744.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-233615.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084545.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215832.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-235559.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-143648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163004.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-055645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-225716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014503.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223910.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-194139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-155511.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112233.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-165514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-152137.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-010437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-100542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233053.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-102229.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-055245.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213335.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-110832.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091403.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-062609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-093907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-135502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-184845.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-030315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-162606.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-030835.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-090557.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-144158.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-162839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211211-224739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-081242.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-002340.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-011700.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-070342.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-013300.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-123423.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-031627.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-010832.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-033233.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214438.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000700.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-153756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-005540.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023801.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-031101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072728.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-033234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-051727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042255.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013054.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124612.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210928.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113906.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220359.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-013343.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124901.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093605.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-153236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-222342.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024638.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-001538.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-072740.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073151.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-162432.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093330.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-193315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-204433.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-025341.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-170159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-065350.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-221224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-193627.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-140704.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-003117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-000327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-034058.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204830.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-232752.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062845.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004734.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-050739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031013.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-123626.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124038.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-014754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-045519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095016.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-030205.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100704.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-130152.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-145507.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-170058.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-230552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-194432.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-174706.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-095600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-145800.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-030046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-033529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-042550.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-043413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-064414.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-071748.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-094850.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-114206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-140441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-212052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-042431.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-094730.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-041755.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-081910.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-045132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064717.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-083102.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-061122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-070351.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-230458.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002347.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000248.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-040608.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-035333.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-024212.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045217.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-075650.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-095003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105710.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-083846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-090807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-140553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180044.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224144.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021540.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051602.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085408.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-120254.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-183258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-205948.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-195240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005031.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-034642.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-095136.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061743.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-153234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220947.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-164201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-091254.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-075224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-131010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-023300.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235302.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065806.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-005146.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123749.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-155455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-152534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134456.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154922.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-080348.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-231402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200927.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-044527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-021425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-131707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-174122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-013640.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-063018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-035345.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-082623.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-090820.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043131.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080524.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-090408.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-045641.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-101527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131136.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-140607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-190353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-140155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-174413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-083327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-184548.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-212512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-235613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-073324.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-011554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-062206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-221532.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-104208.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-122247.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-123523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-062316.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131015.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-034206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-173139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-233114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-185511.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-185530.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-015515.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023349.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132809.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000125.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010833.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230128.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005854.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-045350.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-095547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-102921.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232106.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-123059.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-020029.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043954.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-044817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-054701.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100252.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-183844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-203158.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-232357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-000554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-051618.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-040911.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-070522.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142957.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-144232.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213747.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-231004.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-072049.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-175012.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-210200.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-120341.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-031019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-092334.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-175538.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-234337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-222213.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-114729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124200.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-182554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212909.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005443.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153532.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-160905.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-122647.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-213203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-030325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-030737.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-181335.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231533.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023654.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-043421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-052441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-054951.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-180352.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-041206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-181215.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-151034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-203151.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-201052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-031842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-175934.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-225308.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-013231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-020153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-071218.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-072041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-155644.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-130030.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-190230.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-223634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-211114.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-010841.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-213932.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-041518.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-093929.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211211-233540.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-084019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042017.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-231111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144749.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-110547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-015206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073603.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-155059.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-015908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071345.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-102640.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-081640.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-182901.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-082052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-232651.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094017.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-030156.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-022300.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-114618.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-231354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-225754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-224445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-003915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114156.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-171727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-221518.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000834.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-033407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-020150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-141139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-031721.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-161317.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-034110.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-035757.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-040620.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-092055.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-092918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-225023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-205551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-012535.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114903.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-005735.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-013520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024226.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-085544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093741.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-161609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-195002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-201512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-002240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-210532.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-120308.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-191510.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-191922.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-235201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-060519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-103756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-004742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182149.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-121539.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-165639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-041155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-002525.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-082336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-161743.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-122657.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-230314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-100957.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-204433.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-075636.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-105757.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-132158.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-160718.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-174839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-174845.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-223126.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-232440.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-025801.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-005026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-225806.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-093503.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-165224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-200425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-235346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-003106.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-231106.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-063908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-035347.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-142310.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-083114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-105515.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-035246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-095528.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-054447.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-115808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-101128.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-111410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-153412.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-220003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-001828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-173019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-050225.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142545.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-035107.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-053558.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082906.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-121127.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-152423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-215014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-153246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-040744.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-063021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-093455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-104614.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-213739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-105438.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-164705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-194033.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-200154.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-041236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-024155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-155118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-215400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-221520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-030841.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-103123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-131124.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-113523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-082323.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-155644.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-023140.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-012226.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-053501.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-204139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-054541.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-064422.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-112143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-154304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-180705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-205225.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-075908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-002546.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-195351.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-072154.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-074314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-100155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-004046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-104955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-010206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-063247.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-080328.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-221651.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-130209.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-015532.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231945.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-050754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023242.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-030616.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-055814.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071757.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-171332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-182450.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142133.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-210414.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-010319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-111953.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-122659.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-174815.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-040039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-210935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-111536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-035509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-115734.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-134227.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-121010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-140738.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-001754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-102037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-091117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-131118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-094843.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-164444.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-121243.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-182605.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-200206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-082902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-062101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211211-232459.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-234826.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-094029.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-114309.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-192151.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-131349.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-055114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-095115.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-012952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-232045.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-000326.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-032046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-151529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-065407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-063253.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-041933.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-064853.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-160856.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-203017.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-010738.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-032619.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-035819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-041419.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-042459.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-073140.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-081420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-012823.b1.nc\n", + "SUCCESS \n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-120723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-160746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-125449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-234600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-013354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-102829.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-114211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-124912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050916.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-204142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134920.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-011010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-202907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-132411.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-150736.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-214720.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-142014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-141019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-135618.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-035636.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-133526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-095142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-083357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-125207.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-081236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-160056.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-112400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-220440.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-175919.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-075944.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-141023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-051122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-091902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-093828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-023907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-170045.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-024746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-020500.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-080742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-043627.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-001512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-192611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-225902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-093414.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-125109.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-040309.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-091750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-001354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-163512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-103237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-152038.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-153638.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-114729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-230451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-154718.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-003001.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-052842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-081219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-151600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-001240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-094342.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-114103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-215059.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-010300.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-015100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-045221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-052941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-064942.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-080422.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-181745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-182825.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-192705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-225506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-000426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-070548.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-134549.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-192711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-135630.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-200431.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-071114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-085234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-231005.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-031006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-050207.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-063807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-090728.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-091808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-131809.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-152049.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-162450.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-212851.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-225931.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-234211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-041413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-213937.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-225417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-234738.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-024858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-071020.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-123021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-211741.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-235222.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-084545.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-134946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-165626.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-024829.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-030429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-114151.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-032549.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-142152.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-142712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-162952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-001914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-212834.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-005635.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-165119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-112037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-173919.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-180559.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-000840.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-063844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-132129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-171216.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-092631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-180648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-015355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-043356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-163359.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-181519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-203400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-004441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-014321.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-064722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-082842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-074042.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-101003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-171125.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-212206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-043941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-200745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-211145.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-190025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-202545.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-214545.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-204705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-073228.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-165230.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-195911.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-002035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-223245.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-031526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-064847.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-151009.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-173930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-030453.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-091814.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-095534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-172336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-195257.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-014458.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-004618.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-041939.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-082500.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-090220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-101140.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-143822.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-154222.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-212302.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-063744.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-055504.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-083504.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-162946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-201907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-210147.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220027.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-223228.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-030949.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-072030.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-151512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-131231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-180033.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-170713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-184313.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-193005.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-054322.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-134318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-011140.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-050101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-012746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-233220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-005220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-133504.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-094543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-152704.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-174545.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-011346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-104429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-175111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-045754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-095008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-071634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-100608.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-113128.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-135529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-015538.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-021658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-033659.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-163542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-045104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-070424.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-171753.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-235228.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-190953.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-212314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-012315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-131758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-133918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-205120.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-114724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-101123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-070950.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-040220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-032601.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-201406.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-172331.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-090215.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-220619.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-112056.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-131751.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-221139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-191103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-052946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-134548.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-122028.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-120838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-150028.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-172429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-201926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-052426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-184429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-030551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-193750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-084153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-031534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-035918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-061238.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-125023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-185824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-061547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-112709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-004140.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-023912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-065514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-070034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-104435.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-045127.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-060047.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-130729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-081408.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-142209.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-164050.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-214451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-220611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-072613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-035259.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-121421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-092900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-145942.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-012303.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-064304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-080824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-090705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-185907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-224828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-145912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-090150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-193113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-200313.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-080836.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-171239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-202440.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-030441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-190445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-193126.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-020607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-054448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-064328.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-153131.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-164611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-170731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-190452.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-013933.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-014453.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-065935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-103256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-185938.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-204618.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-233139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-234739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-025420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-165743.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-201504.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-215104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-043626.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-142828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-211350.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-015631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-182315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-231636.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034805.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-142539.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-131422.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-032254.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-123226.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-211229.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-023937.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-024349.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-030448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-145759.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-015915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-225234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-022555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-203919.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-015401.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-015420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-110323.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-201805.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-031421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-102622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-194105.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-134543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-230546.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-005233.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-221232.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-060148.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-060154.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-023353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-101238.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-103355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-235806.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-001926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-233652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-224851.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-033653.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-223258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-210217.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-013938.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-153702.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-152026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-111505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-162426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-233628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-000828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-005628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-114711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-125111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-194153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-043516.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-072556.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-102717.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-150438.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-002441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-201919.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-064842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-112603.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-184325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-011807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-100049.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-210212.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-073129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-142731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-061134.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-183553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-205006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-194711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-140316.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-222223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021715.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-014634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-013810.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-002122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-214729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-060931.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-081932.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091815.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-092340.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-201758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-154821.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-200713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-223114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-231914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-072436.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-120158.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-173759.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-002840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-100443.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-154044.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-065301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-073021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-172224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-082348.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-094348.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-151104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-140144.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-230026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-033227.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-024326.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-215531.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-185410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-152609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-092854.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-021132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-171816.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-231538.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-040859.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-052900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-053940.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-132901.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-063819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-165142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-160902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-010702.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-032543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-194707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-014949.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-182719.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-054956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-212320.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-052322.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-195806.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-101022.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-055427.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-172938.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-193219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-123623.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-194825.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-195345.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-214025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-024947.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-042027.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-071628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-120949.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-151630.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-191111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-211911.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-054034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-061127.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-075354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-125129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-183250.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-200331.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-235252.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-173936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-145421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-181137.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-162502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-033103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-061624.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-095505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-154706.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-130145.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-214428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-064310.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-222148.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-233108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-023748.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-094430.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-150432.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-192033.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-201353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-114157.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-182159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-193639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-032555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-065916.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-200320.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-200839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-021121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-031521.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-062728.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-055014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-105409.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-181125.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-094455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-014500.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-193138.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-072621.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-004705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-074741.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-120342.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-170303.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-010305.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-013235.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-080157.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-121757.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-201800.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-171119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-205520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-212720.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-024201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-121803.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-153004.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-174325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-153524.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-195645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-222606.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-112502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-193544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-224426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-151110.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-234626.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-021747.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-211351.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-063914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-064434.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-111635.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-062207.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-143809.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-144849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-003012.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-232051.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-201931.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-094454.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-095014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-102734.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-015018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-222218.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-023259.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-020023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-224302.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-213347.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-132306.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-042949.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-140552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-065910.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-161912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-172313.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-230954.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-040835.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-025915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-045115.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-111517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-125118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-001920.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-004601.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-031002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-135004.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-143244.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-204606.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-004607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-012847.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-034208.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-123010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-135010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-184852.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-123111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-180050.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-181737.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-053256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-103910.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-133520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-212915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-040332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-165529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-105849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-170804.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-173726.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-180236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-233514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-000154.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-034035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-121237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-163918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-064202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-100502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-183905.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-041507.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-050307.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-060708.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-175631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-174551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-230032.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-051354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-225512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-094035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-184504.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-225405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-111529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-051807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-222211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-005658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-154742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-024303.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-052304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-154146.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-033629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-215508.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-075750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-102711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-090710.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-104831.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-170153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-232034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-034155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-044555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-234200.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-102203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-015001.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-124604.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-160325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-211246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-042448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-084609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-100609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-105929.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-182211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-012333.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-082455.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073856.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-074307.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-000848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-183725.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-100423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-155047.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-065649.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-105146.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-230955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-010721.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-060511.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-215914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-065236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-170558.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-171639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-204959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-010041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-104203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-140444.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-010620.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-201305.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-053307.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-180658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-013507.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-032147.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-035907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-044147.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-203631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-204711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-050314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-080434.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-110035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-043527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-072047.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-141649.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-144329.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-143249.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-180050.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-194731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-193651.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-001932.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-012852.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-014452.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-010218.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-083020.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-140102.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-151022.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-222141.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-065904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-130706.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-151506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-164546.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-182707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-041909.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-045629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-140032.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-205113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-222714.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-034715.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-230441.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-224714.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-052156.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-070316.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-122318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-123918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-133238.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-071922.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-005020.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-072442.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-013306.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-100703.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-175624.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-210305.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-092949.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-073754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-125230.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-094555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-045647.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-085648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-090208.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-092848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-111008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-140049.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-145929.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-164610.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-035253.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-111535.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-070500.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-100100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-101700.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-210701.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-050143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-082424.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-082950.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-144306.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-080310.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-000314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-004555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-221640.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-184839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-032041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-054442.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-051242.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-070442.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-134444.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-221126.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-235246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-132850.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-052334.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-111536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-175018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-221659.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-024900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-045701.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-053421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-164703.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-054546.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-180149.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-163629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-230031.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-055632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-080953.b1.nc\n", + "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-220708.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-015750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-012715.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-053708.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-052716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-074556.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-224720.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-091637.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-003921.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-053242.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-133804.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-110843.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-175925.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-221006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211211-225259.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-225246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-233740.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-113022.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-193745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-170824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-180145.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-211345.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-001506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-030547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-085748.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-062314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-071007.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-094448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-115248.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-181130.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-204057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-233658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-142742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-045624.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-152546.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-131745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-054423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-211747.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-222708.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-051229.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-070430.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-092310.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-130711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-121911.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-201913.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-164552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-213353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-045635.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-103757.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-162959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-194719.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-003007.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-110449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-092849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-133930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-155811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-221653.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-200858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-000859.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-061746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-215110.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-123023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-021231.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:13:28,288 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:13:51,806 - distributed.nanny - WARNING - Restarting worker\n", + "2023-05-22 16:13:55,556 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:15:06,731 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-155256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-002458.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-053420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-064339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-144902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-135541.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-022703.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-061104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-081344.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-140546.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-171227.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-180546.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-205627.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-011228.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-115231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-113111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-153632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-030435.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-215520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-221120.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-021641.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-053402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-124044.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-121923.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-142724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-170725.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-210206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-224846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-094449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-043528.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-132330.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-133410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-143250.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-143810.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-202452.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-225933.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-002452.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-010212.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-011813.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-034214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-121416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-144857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-180058.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-091822.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-154826.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-062826.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-083627.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-040952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-071113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-101753.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-131354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-142314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-162035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-212956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-002037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-011357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-042558.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-045238.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-065519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-203122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-183921.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211230-010843.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-192709.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:15:19,231 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:15:32,816 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:15:36,283 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.19 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:15:47,207 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:16:28,961 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.13 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:19:11,947 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:19:12,034 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.30 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:19:34,936 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-133924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-191005.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-114210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-211812.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-085117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-203520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-023253.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-164617.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-080855.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-103907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-120948.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-080341.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-224834.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-115803.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-144838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-113656.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-194315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-020717.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-204716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-100102.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-010837.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-064958.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-022837.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-150040.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-102319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-174601.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-215642.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-092439.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-174451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-115400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-184441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-220722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-232716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-203630.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-130314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-211356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-005237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-123640.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-093507.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-210842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-021121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-064310.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-193219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-035209.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-062042.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092905.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061331.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-161729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-005735.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100252.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-171332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-180100.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:19:42,311 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.27 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:19:42,343 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.29 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:21:00,453 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.12 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:21:00,678 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.43 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:21:48,543 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "2023-05-22 16:22:06,899 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 10.27 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "2023-05-22 16:23:21,508 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-082956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-092959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-145520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-150600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-114730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-070026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-193756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-181241.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-085759.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-213522.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-105422.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-225003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211230-020723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211230-025003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-205242.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-160423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-103302.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-090319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211230-014603.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-111639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-094039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-192033.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-094455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-115354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-042027.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-145804.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-151446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-145421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-042029.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224555.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121116.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213321.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-041154.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-071214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-102921.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103625.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-162432.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-225716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-195002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-081348.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-232357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023242.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-210935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-165235.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-102223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-105146.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134920.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:24:22,637 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:24:41,408 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-060608.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-201932.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-231013.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-234733.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-233133.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-120856.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-143817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-183258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-010739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-175103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-024340.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-045746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-160949.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-182309.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-233231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-051352.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-123120.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-031941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-234837.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-072621.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-182159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-033103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-080355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-151630.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000700.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110945.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225831.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085820.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093605.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230128.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-231814.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-060759.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-193315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-152137.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-041734.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-072049.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-100423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-122659.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-070101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-165639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-202210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-202907.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-052716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-060511.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-184845.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:25:43,643 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-131816.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-142216.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-225939.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-004145.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-110027.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-015625.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-190029.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-112147.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-225510.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-014031.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-045752.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-105513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-040958.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-091919.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-072159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-213002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-223402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-120949.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-193138.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-162502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-134554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-114157.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-202845.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124901.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-111646.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234850.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033934.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023349.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-035506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-083155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-054701.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093741.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-101939.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-165805.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-022830.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-055645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213335.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-092639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213747.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-121539.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-215837.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050216.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-105849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-181519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-162839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-121010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-174839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-065236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-214720.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-234600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-004441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-064202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-045654.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-054454.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-101656.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-102222.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-194304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-211904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-123107.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-124148.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-214550.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-102313.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-004151.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-114834.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-121514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-173515.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-075358.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-032555.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-211911.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-022626.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-095505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064305.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-074741.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-010317.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041719.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222458.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234324.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-010718.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-171903.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-173139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112233.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-204433.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-183844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-182450.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-193609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182149.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-194130.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-053256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-093907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-075826.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-001754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-015355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-160718.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-171125.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-011700.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132809.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:27:47,215 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:29:17,127 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.17 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:17,216 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.17 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:17,316 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.21 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:17,416 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.21 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:17,517 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.21 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:17,616 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.31 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:17,716 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.33 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:17,817 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.33 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:29:17,915 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.37 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:18,016 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.43 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:18,116 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.44 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:18,216 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.45 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:18,315 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.45 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:18,500 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.45 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:29:23,723 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042542.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-081415.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-101135.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-153644.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-010220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-003927.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-063551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204418.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-093729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165338.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234439.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232106.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024638.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215832.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-135332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024226.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-185530.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-000554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-010437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-055814.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-063148.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-035509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-212915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-160056.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-103339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-161743.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-034035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-060436.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-010041.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-232651.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-234337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-012116.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-013231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-062609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-063021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202319.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-071106.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-140032.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-070548.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-204959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-162450.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113906.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-101802.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000125.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114903.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-123059.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-004048.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-051618.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-191629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-100542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-120308.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-010319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-230955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-122657.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-131118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-162606.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-001240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-114211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-135618.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-095115.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-023912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-044147.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-144950.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-214840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-093828.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051151.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081623.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103200.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124200.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160730.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084545.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-033407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193436.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-160905.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-102802.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-220003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-012535.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-034058.b1.nc\n", + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-203602.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-074221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-092428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-162445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-005540.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-093503.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001935.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-054410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-221650.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-040911.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-175824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-000848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-111953.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223910.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044229.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091403.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-040332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-121237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-190839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-094843.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-165224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-012952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-050314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-054447.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-115808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-204142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-095142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-024746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-051354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-161930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-031721.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-015908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-003915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-012715.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-233740.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-213203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-182554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091055.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-104614.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-052156.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-082323.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-125230.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-072154.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-065407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-234211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-014452.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213849.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-170153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-182211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-222211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-031101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-100609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-075750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-082159.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133920.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073015.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-095547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083446.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-004742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-130312.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014503.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-233926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-103910.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-110832.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-142014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-051122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-231406.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-081242.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-132158.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-071628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-033233.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-105515.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212203.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-052441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-022300.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005443.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064544.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-091637.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-072041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073139.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082906.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185927.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-124745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-024155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-072442.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-110843.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-064422.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-085748.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-112400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-095600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-224426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-080157.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-080328.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-090728.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-130729.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-013507.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-010721.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013054.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-194212.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214438.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-195922.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-143249.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124612.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224852.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073151.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-085253.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-044817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-184416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-235559.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-191510.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-144232.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-033118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-155047.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-133526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233053.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-215914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-071402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-030835.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-101517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-230314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-170045.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-020150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103611.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125435.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-040620.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095252.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-001828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-140035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-220708.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-151034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-093455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-010841.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-211114.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-113523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-180445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-225246.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062845.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-013235.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-070342.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:31:17,635 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-203631.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-012939.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-061655.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073856.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-051727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-210532.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142133.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043954.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-065649.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142957.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-081219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-134744.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-180050.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-152722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-141716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-165529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-180236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-102037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-163918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-170558.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-043941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-211646.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-104222.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-011010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-192705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-125207.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-155059.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-015750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-224445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-080742.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-174551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-225506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-051807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003047.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-030325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-173019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-201052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-105438.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-123918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-070316.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-042431.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-230552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-222606.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:31:38,656 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:32:59,444 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.01 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:32:59,529 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:32:59,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:32:59,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:32:59,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:32:59,928 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,029 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,130 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,329 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,429 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,630 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:00,928 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,028 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,130 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,328 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,428 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,529 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,829 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:01,929 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,028 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,128 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,329 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,428 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,729 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:02,928 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,030 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,129 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,229 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,329 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,429 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,630 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:03,928 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,029 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,128 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,328 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,429 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:33:04,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:04,929 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,029 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,128 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,229 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,330 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,459 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,720 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,829 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:05,929 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:06,030 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:06,129 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:06,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:06,329 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:06,429 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:06,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:06,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:06,730 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", + "2023-05-22 16:33:09,169 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:34:06,570 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:34:53,487 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-084043.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-065513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-201512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-054459.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-101142.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-143746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-002240.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-143648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231929.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000834.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-181043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-110547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-141019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-223336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-082052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-171332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-153412.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-205551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095016.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-114914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-081108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-041206.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-064414.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-153246.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-195240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-140738.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-190230.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180044.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-131306.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-200713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-014321.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-024201.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-211229.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:35:15,812 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:36:37,648 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:37:02,628 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-224834.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-033752.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-114210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-090705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-230024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-220722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-190445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-041844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072728.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114156.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210928.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004323.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134057.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-235440.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-171613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185356.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-221518.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-155511.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222458.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-171903.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-010718.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164118.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-183844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-225023.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022816.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-072037.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-035636.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-025341.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-045519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112233.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-174413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-074307.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-180352.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-231004.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-002122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230128.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-201915.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182149.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-040039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-230250.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-114618.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-043413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-142539.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-154933.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:39:07,144 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-222342.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-072740.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015326.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-091822.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-123111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-065519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-065514.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184652.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-035333.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024502.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-050739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033111.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130547.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061743.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-090643.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-084019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-071916.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-035757.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-193609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-123626.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-125449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213747.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053002.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125435.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224852.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172727.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-044817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202202.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-180100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-235613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-205551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-144232.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:40:31,044 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-110035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-010837.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-114729.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-080855.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-040309.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-043421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-103254.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-065928.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-135607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220359.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141416.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005854.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-151846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015738.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-141139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145201.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-183553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-105723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112645.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164530.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-085944.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-131822.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021715.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-030616.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100704.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-050754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-042852.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154922.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-035345.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101817.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-060931.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064717.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-032254.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-210935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-121127.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-065119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-082336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-111536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-134227.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-225754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-063551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-220655.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-030315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-081236.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:40:52,303 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023801.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-204307.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-230451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-144158.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-153756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042255.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092042.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091918.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212615.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-102336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-162552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050916.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063956.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041719.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234324.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073603.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065407.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053135.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134456.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-063018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-085544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-140155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-182450.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-111410.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-034110.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-183725.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-211237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-031019.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034805.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-150736.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-042550.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-155118.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-015401.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-205520.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192201.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-020153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204830.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-225716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-020150.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-004622.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-133238.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235302.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-164444.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:41:50,125 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:42:09,819 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 7:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:42:26,816 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:42:44,925 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:43:05,752 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:43:31,427 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:43:49,472 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:44:06,359 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:44:26,605 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:44:44,777 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:45:08,375 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:45:31,855 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:45:54,045 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:46:12,414 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:46:32,920 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-003001.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-205756.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-061122.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-202210.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-193627.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-091353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-020717.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170613.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045217.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110945.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010421.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094552.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-104312.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124038.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213321.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-071214.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215420.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-122647.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-161317.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103625.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-232357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195534.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-040608.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074415.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112632.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-083846.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123749.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175221.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185515.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-074702.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114607.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191043.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-185530.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215832.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005443.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-020305.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-070522.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-021425.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083446.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:47:09,166 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:47:26,493 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "2023-05-22 16:47:46,413 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:48:02,519 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:49:28,718 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:49:58,798 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-233615.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-234600.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-092639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-035506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-011554.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-133804.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-081108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044529.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-031721.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-023907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-130030.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-015420.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-175824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-104429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002758.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030723.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-222223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082455.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-222101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-194139.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-094843.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-131010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015030.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-035209.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-090036.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-093503.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-165224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-135630.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-094342.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065806.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122926.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-124745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-123059.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043954.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053838.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095016.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-220003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-052441.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-215544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-194711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-115737.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-080355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-103910.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-142724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-120137.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-105146.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-085759.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-133520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-184548.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164103.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054237.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124612.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003210.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042542.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234850.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002224.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031424.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095252.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093605.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163942.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-041154.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-205948.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105842.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111941.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215712.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024638.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214438.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085408.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140018.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080524.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092905.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-090408.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093741.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-135332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-001828.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-055245.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-050225.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-201052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-062316.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-213327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233053.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-184845.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-075826.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-151446.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-225234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-101517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-120158.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-071402.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:52:20,401 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180220.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-032601.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-195002.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034353.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-212944.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-144329.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-213926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-160746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002347.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023349.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031959.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105710.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131534.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012108.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144749.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075525.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031013.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030601.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203143.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152824.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193024.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053135.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012405.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070629.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-202907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223046.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024226.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043542.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-010437.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-045641.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-041734.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-063148.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-233926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-174706.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-140035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-171332.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-234337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-100423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-104208.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-053708.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-102223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-212052.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-161855.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-215014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-013231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-060511.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-154821.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", + " major: Object header\n", + " minor: Can't get value\n", + " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", + " major: Virtual Object Layer\n", + " minor: Can't get value\n", + " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", + " major: Object header\n", + " minor: Object not found\n", + " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", + " major: Symbol table\n", + " minor: Object not found\n", + " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", + " major: Symbol table\n", + " minor: Can't move to next iterator location\n", + " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", + " major: Symbol table\n", + " minor: Can't get value\n", + " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", + " major: Object header\n", + " minor: Unable to decode value\n", + " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", + " major: Object header\n", + " minor: Wrong version number\n", + "2023-05-22 16:53:38,871 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-085253.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050216.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-080722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-012746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-154304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-011140.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-092222.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-011346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-151630.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-003927.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-054539.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-111953.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023242.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183423.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-033234.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-153236.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170904.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-224322.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-071218.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-230314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-200713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023801.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055923.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-140553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224144.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161844.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192730.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193436.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073603.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-130312.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-181215.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091403.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-071628.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-070548.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-225506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-114211.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-072041.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-032147.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-165230.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-211351.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-011223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-063744.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-071634.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-210701.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-224302.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-045754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150024.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235713.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-120254.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155745.b1.nc\n", + "SUCCESS " + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2023-05-22 16:54:00,630 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:54:19,325 - distributed.nanny - WARNING - Restarting worker\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:54:37,473 - distributed.nanny - WARNING - Restarting worker\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "2023-05-22 16:56:15,145 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", + " major: Attribute\n", + " minor: Unable to initialize object\n", + " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", + " major: Attribute\n", + " minor: Unable to insert object\n", + " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", + " major: Object header\n", + " minor: No space available for allocation\n", + " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", + " major: Object header\n", + " minor: Unable to initialize object\n", + " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", + " major: Object header\n", + " minor: Can't extend heap's space\n", + " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", + " major: Object header\n", + " minor: Unable to protect metadata\n", + " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", + " major: Object cache\n", + " minor: Unable to protect metadata\n", + " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", + " major: Object cache\n", + " minor: Unable to load metadata into cache\n", + " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", + " major: Object cache\n", + " minor: Read failed\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "2023-05-22 16:57:36,176 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.19 GiB -- Worker memory limit: 15.72 GiB\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144936.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-131354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-195344.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-002035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-114309.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-180705.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-215110.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-135529.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013054.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-095003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-055645.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023523.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064119.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-143648.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064407.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-191338.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-014754.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231533.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-120308.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131015.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-221532.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-205520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091815.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-181519.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-113523.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-005540.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-075908.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-061127.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-003012.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-102734.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-155256.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074003.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183417.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084709.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-183553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-194711.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-222223.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071345.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-181215.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-235613.b1.nc\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", + " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", + " major: Virtual Object Layer\n", + " minor: Unable to create file\n", + " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", + " major: File accessibility\n", + " minor: Unable to open file\n", + " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", + " major: File accessibility\n", + " minor: Unable to lock file\n", + " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n", + " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", + " major: Virtual File Layer\n", + " minor: Unable to lock file\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-213203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-014557.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-201913.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012231.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-030325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-043021.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-115914.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-175925.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000248.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163240.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214301.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-134744.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-063551.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-131306.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-082336.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021540.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-122318.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-015401.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-170045.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-180145.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-013306.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-001506.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-195911.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-005233.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-111008.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-143249.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-224337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-005658.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-160902.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-045624.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-061624.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-131745.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042707.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224852.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-194130.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-194153.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-102203.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-061655.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-160325.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202731.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081623.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-060508.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064819.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-222101.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-043413.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-151034.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-071218.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-190839.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-212337.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-143746.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234907.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-101527.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-030205.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-055814.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092346.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-083327.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-165235.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-194432.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-232651.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064305.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-141716.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-131422.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-213739.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-224445.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-035509.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225831.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050628.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-041155.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-081219.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-062609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-174122.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144112.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-205006.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-103339.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-231914.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202319.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-034035.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-003921.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-110323.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-135924.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-094543.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-063807.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063132.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103900.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130547.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202202.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000700.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-140553.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-123059.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095016.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-092639.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-115737.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-103910.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-214840.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-190230.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-080722.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-104429.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-135630.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-224851.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-171239.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-080328.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-022703.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-111505.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-132306.b1.nc\n", + "SUCCESS \n", + "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", + "## library for working with weather radar data. Py-ART is partly\n", + "## supported by the U.S. Department of Energy as part of the Atmospheric\n", + "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", + "## Science user facility.\n", + "##\n", + "## If you use this software to prepare a publication, please cite:\n", + "##\n", + "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", + "\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-194731.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-000326.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-193544.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-030448.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-083357.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074426.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-145520.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-201926.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192025.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021304.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134920.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-193315.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-071748.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-160056.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-232954.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-030156.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-203631.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154631.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-231406.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-121803.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-131703.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-140704.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-230026.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-195351.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-051354.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-054447.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-024303.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-072740.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232930.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-144232.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-104614.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-163512.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001935.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091055.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103449.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220536.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030858.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-040039.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-194139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-124912.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-230314.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-142539.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-210217.b1.nc\n", + "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-055014.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-193113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-153638.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-101123.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-084609.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-135010.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-164617.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-221139.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-071113.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-092433.b1.nc\n", + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-121514.b1.nc\n" + ] + } + ], "source": [ - "client" + "%%time\n", + "my_data = client.gather(future)" ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "fb03d974-a65d-43e2-80e7-b778843d1e6e", - "metadata": {}, - "outputs": [], - "source": [] } ], "metadata": { "kernelspec": { - "display_name": "pyart-simple", + "display_name": "sail", "language": "python", - "name": "pyart-simple" + "name": "sail" }, "language_info": { "codemirror_mode": { @@ -404,7 +15853,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.6.15" + "version": "3.10.6" } }, "nbformat": 4, From 2e84f37e5c135155a652d1ff18f83fd358fd6736 Mon Sep 17 00:00:00 2001 From: jrobrien91 Date: Thu, 22 Feb 2024 15:53:34 -0500 Subject: [PATCH 2/4] ENH: time offset added for each gate to have a specific time --- .../concatinate_file.ipynb | 125 ++++++++++++------ 1 file changed, 83 insertions(+), 42 deletions(-) diff --git a/notebooks/gluing_and_inventory/concatinate_file.ipynb b/notebooks/gluing_and_inventory/concatinate_file.ipynb index b20bae7..1affd2a 100644 --- a/notebooks/gluing_and_inventory/concatinate_file.ipynb +++ b/notebooks/gluing_and_inventory/concatinate_file.ipynb @@ -2,6 +2,7 @@ "cells": [ { "cell_type": "markdown", + "id": "b1336072", "metadata": {}, "source": [ "# Gluing and Merging\n", @@ -12,6 +13,7 @@ { "cell_type": "code", "execution_count": 1, + "id": "374502ac", "metadata": {}, "outputs": [ { @@ -48,6 +50,9 @@ "import datetime\n", "import numpy as np\n", "import xarray as xr\n", + "import tempfile\n", + "from pathlib import Path\n", + "import shutil \n", "\n", "from matplotlib import pyplot as plt\n", "from dask.distributed import Client, LocalCluster, progress\n", @@ -57,6 +62,7 @@ }, { "cell_type": "markdown", + "id": "691d7069", "metadata": {}, "source": [ "## Define Helper Functions" @@ -64,16 +70,13 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, + "id": "352f8fc6-5d59-45c2-916c-9bc4454910d0", "metadata": {}, "outputs": [], "source": [ - "def glue_fix(nfile):\n", - " \n", - " status = 'SUCCESS: ' + str(nfile)\n", - " \n", - " month = \"202112\"\n", - " OUTPUT = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/\" + month + \"_glued/\"\n", + "def glue_fix(ds):\n", + " # Define the required encodings for the glue files\n", " encodings = {'DBZ' : {'_FillValue' : -32768.0},\n", " 'VEL' : {'_FillValue' : -32768.0},\n", " 'WIDTH' : {'_FillValue' : -32768.0},\n", @@ -82,36 +85,23 @@ " 'RHOHV' : {'_FillValue' : -32768.0},\n", " 'NCP' : {'_FillValue' : -32768.0},\n", " 'DBZhv' : {'_FillValue' : -32768.0},\n", - " }\n", - " # load the file\n", - " try:\n", - " ds = xr.open_dataset(nfile, mask_and_scale=False)\n", - " except:\n", - " ds = None\n", - " status = \"FALIURE: - can't open file: \" + str(nfile)\n", - " \n", - " if ds is not None:\n", - " # Loop over all the variables; update the FillValue and Data Type\n", - " for var in encodings:\n", - " # Convert all values within the DataArray to the correct Fill Value\n", - " # NOTE: xr.where(condition, value_when_condition_is_not_met); so if every index is MVC, check for opposite\n", - " mask = ds[var].where(ds[var] > -99800, encodings[var]['_FillValue'])\n", - " # Append the corrected data to the variable.\n", - " ds[var] = mask\n", - " # Define output name\n", - " nout = OUTPUT + nfile.split('/')[-1]\n", - " # Save the file\n", - " try:\n", - " ds.to_netcdf(path=nout)\n", - " except:\n", - " status = \"FAILURE - can't write: \" + str(nout)\n", + " } \n", + " \n", + " # Loop over all the variables; update the FillValue and Data Type\n", + " for var in encodings:\n", + " # Convert all values within the DataArray to the correct Fill Value\n", + " # NOTE: xr.where(condition, value_when_condition_is_not_met); so if every index is MVC, check for opposite\n", + " mask = ds[var].where(ds[var] > -99800, encodings[var]['_FillValue'])\n", + " # Append the corrected data to the variable.\n", + " ds[var] = mask\n", " \n", - " return status" + " return ds" ] }, { "cell_type": "code", "execution_count": 3, + "id": "3dd6302a", "metadata": {}, "outputs": [], "source": [ @@ -128,6 +118,7 @@ { "cell_type": "code", "execution_count": 4, + "id": "b245fb02", "metadata": {}, "outputs": [], "source": [ @@ -141,24 +132,49 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, + "id": "127bcf07-ff1f-47b3-a566-ff7ed6840884", + "metadata": {}, + "outputs": [], + "source": [ + "def fix_times(ds):\n", + " # Determine number of specific times within the file\n", + " specific = set(ds.time.data)\n", + " # Loop through the specific times, and add offset\n", + " for value in specific:\n", + " dt = np.arange(0, len(ds.sel(time=slice(value, value)).time.data))\n", + " dt = dt.astype('timedelta64[ms]')\n", + " # add the time offset to the original times\n", + " new_times = ds.sel(time=slice(value, value)).time.data + dt\n", + " ds.sel(time=slice(value, value)).time.data[:] = new_times\n", + " # Send back to the main\n", + " return ds" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "f1e461bf-7740-45f4-8797-47f1346c66f8", "metadata": {}, "outputs": [], "source": [ "def granule(Dvolume):\n", " n_tilts = 8\n", " month = \"202112\"\n", - " data_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/nc_files/\" + month + \"_nc/\"\n", - " out_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/\" + month + \"_glued/\"\n", + " data_dir = \"/Users/jrobrien/dev/sail-xprecip-radar/data/sample-glue/\"\n", + " out_dir = \"/Users/jrobrien/dev/sail-xprecip-radar/data/sample-glue/\"\n", + "\n", + " # Read the base scan to determine if it can be read in\n", " if len(Dvolume) == 8:\n", " try:\n", " base_rad = pyart.io.read(data_dir+Dvolume[0])\n", " except:\n", " base_rad = None\n", - " \n", + " # Read all scans and join with base scan\n", " if base_rad is not None:\n", " out_radar = volume_from_list(base_rad, Dvolume, data_dir)\n", " if out_radar is not None:\n", + " # Define the filename time from the radar object\n", " ff = time.strptime(out_radar.time['units'][14:], '%Y-%m-%dT%H:%M:%SZ')\n", " dt = datetime.datetime.fromtimestamp(time.mktime(ff)) + datetime.timedelta(seconds= int(out_radar.time['data'][0]))\n", " strform = dt.strftime(out_dir + 'xprecipradar_guc_volume_%Y%m%d-%H%M%S.b1.nc')\n", @@ -171,11 +187,24 @@ " print('FAILURE', strform)\n", " # Delete the radars to free up memory\n", " del base_rad\n", - " del out_radar" + " del out_radar\n", + " # Fix the times and encodings of the generated file\n", + " with tempfile.TemporaryDirectory() as tmpdir:\n", + " tmp_path = Path(tmpdir)\n", + " with xr.open_dataset(strform, mask_and_scale=False) as ds:\n", + " ds = ds.load()\n", + " ds = fix_times(ds)\n", + " ds = glue_fix(ds)\n", + " out_path = str(tmp_path) + '/' + strform.split('/')[-1]\n", + " # set time encoding for miliseconds\n", + " ds.time.encoding['units'] = 'milliseconds since 1970-01-01'\n", + " ds.to_netcdf(path=out_path)\n", + " shutil.copy(out_path, strform)" ] }, { "cell_type": "markdown", + "id": "2bda0c0c", "metadata": {}, "source": [ "## Locate all the PPI scans within the Desired Directories" @@ -184,10 +213,11 @@ { "cell_type": "code", "execution_count": 6, + "id": "a405c35d", "metadata": {}, "outputs": [], "source": [ - "month = \"202112\"\n", + "month = \"202203\"\n", "data_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/nc_files/\" + month + \"_nc/\"\n", "out_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/\" + month + \"_glued/\"" ] @@ -195,6 +225,7 @@ { "cell_type": "code", "execution_count": 7, + "id": "4e6b5ba6", "metadata": {}, "outputs": [], "source": [ @@ -205,6 +236,7 @@ { "cell_type": "code", "execution_count": 8, + "id": "0648e36d", "metadata": {}, "outputs": [], "source": [ @@ -218,13 +250,13 @@ " if ppi_pattern in file:\n", " ppis.append(file)\n", " if base_scan_ppi in file:\n", - " base_scans.append(file)\n", - " " + " base_scans.append(file)" ] }, { "cell_type": "code", "execution_count": 9, + "id": "0b27b11f", "metadata": {}, "outputs": [], "source": [ @@ -234,6 +266,7 @@ { "cell_type": "code", "execution_count": 10, + "id": "36f4ac94", "metadata": {}, "outputs": [], "source": [ @@ -247,6 +280,7 @@ }, { "cell_type": "markdown", + "id": "3b34df49", "metadata": {}, "source": [ "## Try Single Volume to Verify Process" @@ -255,6 +289,7 @@ { "cell_type": "code", "execution_count": 11, + "id": "b6e36298", "metadata": {}, "outputs": [ { @@ -282,6 +317,7 @@ { "cell_type": "code", "execution_count": 12, + "id": "f6ad63e3", "metadata": {}, "outputs": [ { @@ -301,6 +337,7 @@ }, { "cell_type": "markdown", + "id": "45dd0c3a", "metadata": {}, "source": [ "## Start a Dask Cluster" @@ -309,6 +346,7 @@ { "cell_type": "code", "execution_count": 13, + "id": "8d9383af", "metadata": {}, "outputs": [ { @@ -1200,6 +1238,7 @@ }, { "cell_type": "markdown", + "id": "9a0cee88", "metadata": {}, "source": [ "## Glue the Files" @@ -1208,6 +1247,7 @@ { "cell_type": "code", "execution_count": 14, + "id": "17cca90d", "metadata": {}, "outputs": [], "source": [ @@ -1217,6 +1257,7 @@ { "cell_type": "code", "execution_count": 15, + "id": "aaad255d", "metadata": {}, "outputs": [ { @@ -15839,9 +15880,9 @@ ], "metadata": { "kernelspec": { - "display_name": "sail", + "display_name": "Python 3 (ipykernel)", "language": "python", - "name": "sail" + "name": "python3" }, "language_info": { "codemirror_mode": { @@ -15853,7 +15894,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.6" + "version": "3.12.2" } }, "nbformat": 4, From a9294789e257f18aeb763df2b184648db510c51c Mon Sep 17 00:00:00 2001 From: jrobrien91 Date: Thu, 22 Feb 2024 17:33:41 -0500 Subject: [PATCH 3/4] ENH: test of using temporary directory for fixing times --- .../concatinate_file.ipynb | 15520 +--------------- 1 file changed, 112 insertions(+), 15408 deletions(-) diff --git a/notebooks/gluing_and_inventory/concatinate_file.ipynb b/notebooks/gluing_and_inventory/concatinate_file.ipynb index 1affd2a..bd65a1d 100644 --- a/notebooks/gluing_and_inventory/concatinate_file.ipynb +++ b/notebooks/gluing_and_inventory/concatinate_file.ipynb @@ -32,13 +32,6 @@ "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", "\n" ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] } ], "source": [ @@ -70,7 +63,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "id": "352f8fc6-5d59-45c2-916c-9bc4454910d0", "metadata": {}, "outputs": [], @@ -132,7 +125,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "id": "127bcf07-ff1f-47b3-a566-ff7ed6840884", "metadata": {}, "outputs": [], @@ -153,16 +146,16 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": 6, "id": "f1e461bf-7740-45f4-8797-47f1346c66f8", "metadata": {}, "outputs": [], "source": [ "def granule(Dvolume):\n", " n_tilts = 8\n", - " month = \"202112\"\n", - " data_dir = \"/Users/jrobrien/dev/sail-xprecip-radar/data/sample-glue/\"\n", - " out_dir = \"/Users/jrobrien/dev/sail-xprecip-radar/data/sample-glue/\"\n", + " month = \"202203\"\n", + " data_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/nc_files/\" + month + \"_nc/\"\n", + " out_dir = \"/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/\" + month + \"_glued/\"\n", "\n", " # Read the base scan to determine if it can be read in\n", " if len(Dvolume) == 8:\n", @@ -212,7 +205,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 7, "id": "a405c35d", "metadata": {}, "outputs": [], @@ -224,7 +217,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 8, "id": "4e6b5ba6", "metadata": {}, "outputs": [], @@ -235,7 +228,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 9, "id": "0648e36d", "metadata": {}, "outputs": [], @@ -255,7 +248,7 @@ }, { "cell_type": "code", - "execution_count": 9, + "execution_count": 10, "id": "0b27b11f", "metadata": {}, "outputs": [], @@ -265,7 +258,7 @@ }, { "cell_type": "code", - "execution_count": 10, + "execution_count": 11, "id": "36f4ac94", "metadata": {}, "outputs": [], @@ -288,24 +281,24 @@ }, { "cell_type": "code", - "execution_count": 11, + "execution_count": 12, "id": "b6e36298", "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "['gucxprecipradarS2.00.20211201.000248.raw.csu.sail-20211201-000248_40208_22_1_PPI.nc',\n", - " 'gucxprecipradarS2.00.20211201.000320.raw.csu.sail-20211201-000320_40209_22_2_PPI.nc',\n", - " 'gucxprecipradarS2.00.20211201.000352.raw.csu.sail-20211201-000352_40210_22_4_PPI.nc',\n", - " 'gucxprecipradarS2.00.20211201.000424.raw.csu.sail-20211201-000424_40211_22_6_PPI.nc',\n", - " 'gucxprecipradarS2.00.20211201.000456.raw.csu.sail-20211201-000456_40212_22_8_PPI.nc',\n", - " 'gucxprecipradarS2.00.20211201.000528.raw.csu.sail-20211201-000528_40213_22_10_PPI.nc',\n", - " 'gucxprecipradarS2.00.20211201.000600.raw.csu.sail-20211201-000600_40214_22_12_PPI.nc',\n", - " 'gucxprecipradarS2.00.20211201.000632.raw.csu.sail-20211201-000632_40215_22_15_PPI.nc']" + "['gucxprecipradarS2.00.20220301.004845.raw.csu.sail-20220301-004845_278032_22_1_PPI.nc',\n", + " 'gucxprecipradarS2.00.20220301.004916.raw.csu.sail-20220301-004916_278034_22_2_PPI.nc',\n", + " 'gucxprecipradarS2.00.20220301.004949.raw.csu.sail-20220301-004949_278035_22_4_PPI.nc',\n", + " 'gucxprecipradarS2.00.20220301.005020.raw.csu.sail-20220301-005020_278036_22_6_PPI.nc',\n", + " 'gucxprecipradarS2.00.20220301.005053.raw.csu.sail-20220301-005053_278037_22_8_PPI.nc',\n", + " 'gucxprecipradarS2.00.20220301.005124.raw.csu.sail-20220301-005124_278038_22_10_PPI.nc',\n", + " 'gucxprecipradarS2.00.20220301.005156.raw.csu.sail-20220301-005156_278039_22_12_PPI.nc',\n", + " 'gucxprecipradarS2.00.20220301.005229.raw.csu.sail-20220301-005229_278040_22_15_PPI.nc']" ] }, - "execution_count": 11, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } @@ -316,7 +309,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 13, "id": "f6ad63e3", "metadata": {}, "outputs": [ @@ -324,9 +317,9 @@ "name": "stdout", "output_type": "stream", "text": [ - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000248.b1.nc\n", - "CPU times: user 9.7 s, sys: 1.62 s, total: 11.3 s\n", - "Wall time: 13 s\n" + "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202203_glued/xprecipradar_guc_volume_20220301-004845.b1.nc\n", + "CPU times: user 14.4 s, sys: 1.66 s, total: 16 s\n", + "Wall time: 17.1 s\n" ] } ], @@ -335,6 +328,17 @@ "granule(volumes[0])" ] }, + { + "cell_type": "code", + "execution_count": 17, + "id": "9d7f8f24-a349-4693-9a5d-bda88eef18c8", + "metadata": {}, + "outputs": [], + "source": [ + "# smaller subset just for testing; for full month map volumes to granule\n", + "subset = volumes[0:16]" + ] + }, { "cell_type": "markdown", "id": "45dd0c3a", @@ -345,37 +349,10 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 15, "id": "8d9383af", "metadata": {}, "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "/ccsopen/home/jrobrien/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/tornado/platform/asyncio.py:193: DeprecationWarning: There is no current event loop\n", - " old_loop = asyncio.get_event_loop()\n", - "/ccsopen/home/jrobrien/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/node.py:183: UserWarning: Port 8787 is already in use.\n", - "Perhaps you already have a cluster running?\n", - "Hosting the HTTP server on port 34861 instead\n", - " warnings.warn(\n", - "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-enpmlc14', purging\n", - "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-9ucyg2ag', purging\n", - "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-840d9c4k', purging\n", - "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-dpkjem6_', purging\n", - "2023-05-22 14:54:07,441 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-2hzcvp1u', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-kid4uhz8', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-5v8thwu9', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-ocg450dr', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-_dalutpj', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-gqxetqcd', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-1qhxwio2', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-t0plmfqn', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-xvbgoadj', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-w4751nt8', purging\n", - "2023-05-22 14:54:07,442 - distributed.diskutils - INFO - Found stale lock file and directory '/tmp/dask-worker-space/worker-vetgjh44', purging\n" - ] - }, { "data": { "text/html": [ @@ -383,7 +360,7 @@ "
\n", "
\n", "

Client

\n", - "

Client-07f49605-f8d2-11ed-92da-b8cb29b12334

\n", + "

Client-6b38fc35-d1cd-11ee-aa6b-b8cb29b120a2

\n", " \n", "\n", " \n", @@ -396,7 +373,7 @@ " \n", " \n", " \n", " \n", " \n", @@ -405,6 +382,12 @@ "
\n", - " Dashboard: http://127.0.0.1:34861/status\n", + " Dashboard: http://127.0.0.1:8787/status\n", "
\n", "\n", " \n", + " \n", + " \n", + "\n", + " \n", "
\n", "

Cluster Info

\n", "
\n", @@ -412,19 +395,19 @@ "
\n", "
\n", "

LocalCluster

\n", - "

8f8737f8

\n", + "

d5f460ae

\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
\n", - " Dashboard: http://127.0.0.1:34861/status\n", + " Dashboard: http://127.0.0.1:8787/status\n", " \n", - " Workers: 16\n", + " Workers: 1\n", "
\n", - " Total threads: 128\n", + " Total threads: 1\n", " \n", " Total memory: 251.48 GiB\n", @@ -449,22 +432,22 @@ "
\n", "
\n", "

Scheduler

\n", - "

Scheduler-b300a11d-f70e-44fc-9e70-a5c16a62938d

\n", + "

Scheduler-8ee07010-a59b-4d9e-9820-fab289c28b05

\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", @@ -495,164 +478,29 @@ "
\n", - " Comm: tcp://127.0.0.1:43125\n", + " Comm: tcp://127.0.0.1:34455\n", " \n", - " Workers: 16\n", + " Workers: 1\n", "
\n", - " Dashboard: http://127.0.0.1:34861/status\n", + " Dashboard: http://127.0.0.1:8787/status\n", " \n", - " Total threads: 128\n", + " Total threads: 1\n", "
\n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:42045\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:33539/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:42247\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-dhdlt8g3\n", - "
\n", - " \n", - "
\n", - " \n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 1

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:39827\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:39591/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:43215\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-xur55u64\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 2

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:33585\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:39011/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:43083\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-yxy9rhoo\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 3

\n", - "
\n", - " \n", - " \n", - " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "\n", @@ -665,15217 +513,73 @@ " \n", " \n", " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 4

\n", - "
\n", - "
\n", - " Comm: tcp://127.0.0.1:35203\n", + " Comm: tcp://127.0.0.1:43873\n", " \n", - " Total threads: 8\n", + " Total threads: 1\n", "
\n", - " Dashboard: http://127.0.0.1:34359/status\n", + " Dashboard: http://127.0.0.1:37303/status\n", " \n", - " Memory: 15.72 GiB\n", + " Memory: 251.48 GiB\n", "
\n", - " Nanny: tcp://127.0.0.1:33325\n", + " Nanny: tcp://127.0.0.1:34077\n", "
\n", - " Local directory: /tmp/dask-worker-space/worker-ljqqntc4\n", + " Local directory: /tmp/dask-scratch-space/worker-6_zfrvvd\n", "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", "\n", - " \n", - "\n", - " \n", + " \n", + "\n", "\n", - "
\n", - " Comm: tcp://127.0.0.1:37037\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:41969/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:42083\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-kv0pv31f\n", - "
\n", + "
\n", + "
\n", + "
\n", " \n", - " \n", - " \n", " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 5

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", "\n", - "
\n", - " Comm: tcp://127.0.0.1:34649\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:42455/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:43063\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-wz078f29\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 6

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:39881\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:33483/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:43181\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-eeyzhmrv\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 7

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:35267\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:44933/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:46203\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-vgwdq4cw\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 8

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:44113\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:42319/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:40517\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-gzzibnmf\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 9

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:38177\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:45883/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:38887\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-rw30o7z5\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 10

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:34551\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:40115/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:38083\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-987uxl9b\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 11

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:39009\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:42655/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:35345\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-pa64fvsb\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 12

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:35469\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:38937/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:37095\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-1c6k9_ln\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 13

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:41115\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:36281/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:41019\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-oy3k4oq_\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 14

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:33927\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:39397/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:33319\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-erdteznf\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "

Worker: 15

\n", - "
\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "\n", - " \n", - "\n", - " \n", - "\n", - "
\n", - " Comm: tcp://127.0.0.1:34877\n", - " \n", - " Total threads: 8\n", - "
\n", - " Dashboard: http://127.0.0.1:36103/status\n", - " \n", - " Memory: 15.72 GiB\n", - "
\n", - " Nanny: tcp://127.0.0.1:46039\n", - "
\n", - " Local directory: /tmp/dask-worker-space/worker-bmces1jz\n", - "
\n", - "
\n", - "
\n", - "
\n", - " \n", - "\n", - " \n", - "\n", - "\n", - " \n", - " \n", - "\n", - " \n", - " \n", - "\n", - " \n", - "" - ], - "text/plain": [ - "" - ] - }, - "execution_count": 13, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "from dask.distributed import Client, LocalCluster\n", - "\n", - "cluster = LocalCluster()\n", - "\n", - "client = Client(cluster)\n", - "client" - ] - }, - { - "cell_type": "markdown", - "id": "9a0cee88", - "metadata": {}, - "source": [ - "## Glue the Files" - ] - }, - { - "cell_type": "code", - "execution_count": 14, - "id": "17cca90d", - "metadata": {}, - "outputs": [], - "source": [ - "future = client.map(granule, volumes)" - ] - }, - { - "cell_type": "code", - "execution_count": 15, - "id": "aaad255d", - "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 14:54:45,718 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 14:55:46,445 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 14:56:02,115 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:01:53,708 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:02:43,405 - distributed.nanny - WARNING - Restarting worker\n" - ] - }, - { - "ename": "KilledWorker", - "evalue": "Attempted to run task granule-4902ee5ab80d67acd599409b8a32b3c3 on 3 different workers, but all those workers died while running it. The last worker that attempt to run the task was tcp://127.0.0.1:37037. Inspecting worker logs is often a good next step to diagnose what went wrong. For more information see https://distributed.dask.org/en/stable/killed.html.", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mKilledWorker\u001b[0m Traceback (most recent call last)", - "File \u001b[0;32m:1\u001b[0m\n", - "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/client.py:2226\u001b[0m, in \u001b[0;36mClient.gather\u001b[0;34m(self, futures, errors, direct, asynchronous)\u001b[0m\n\u001b[1;32m 2224\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 2225\u001b[0m local_worker \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[0;32m-> 2226\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43msync\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 2227\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43m_gather\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2228\u001b[0m \u001b[43m \u001b[49m\u001b[43mfutures\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2229\u001b[0m \u001b[43m \u001b[49m\u001b[43merrors\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43merrors\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2230\u001b[0m \u001b[43m \u001b[49m\u001b[43mdirect\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mdirect\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2231\u001b[0m \u001b[43m \u001b[49m\u001b[43mlocal_worker\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mlocal_worker\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2232\u001b[0m \u001b[43m \u001b[49m\u001b[43masynchronous\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43masynchronous\u001b[49m\u001b[43m,\u001b[49m\n\u001b[1;32m 2233\u001b[0m \u001b[43m\u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/utils.py:339\u001b[0m, in \u001b[0;36mSyncMethodMixin.sync\u001b[0;34m(self, func, asynchronous, callback_timeout, *args, **kwargs)\u001b[0m\n\u001b[1;32m 337\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m future\n\u001b[1;32m 338\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m--> 339\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m \u001b[43msync\u001b[49m\u001b[43m(\u001b[49m\n\u001b[1;32m 340\u001b[0m \u001b[43m \u001b[49m\u001b[38;5;28;43mself\u001b[39;49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mloop\u001b[49m\u001b[43m,\u001b[49m\u001b[43m \u001b[49m\u001b[43mfunc\u001b[49m\u001b[43m,\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[43mcallback_timeout\u001b[49m\u001b[38;5;241;43m=\u001b[39;49m\u001b[43mcallback_timeout\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[43mkwargs\u001b[49m\n\u001b[1;32m 341\u001b[0m \u001b[43m \u001b[49m\u001b[43m)\u001b[49m\n", - "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/utils.py:406\u001b[0m, in \u001b[0;36msync\u001b[0;34m(loop, func, callback_timeout, *args, **kwargs)\u001b[0m\n\u001b[1;32m 404\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m error:\n\u001b[1;32m 405\u001b[0m typ, exc, tb \u001b[38;5;241m=\u001b[39m error\n\u001b[0;32m--> 406\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m exc\u001b[38;5;241m.\u001b[39mwith_traceback(tb)\n\u001b[1;32m 407\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[1;32m 408\u001b[0m \u001b[38;5;28;01mreturn\u001b[39;00m result\n", - "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/utils.py:379\u001b[0m, in \u001b[0;36msync..f\u001b[0;34m()\u001b[0m\n\u001b[1;32m 377\u001b[0m future \u001b[38;5;241m=\u001b[39m asyncio\u001b[38;5;241m.\u001b[39mwait_for(future, callback_timeout)\n\u001b[1;32m 378\u001b[0m future \u001b[38;5;241m=\u001b[39m asyncio\u001b[38;5;241m.\u001b[39mensure_future(future)\n\u001b[0;32m--> 379\u001b[0m result \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01myield\u001b[39;00m future\n\u001b[1;32m 380\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m:\n\u001b[1;32m 381\u001b[0m error \u001b[38;5;241m=\u001b[39m sys\u001b[38;5;241m.\u001b[39mexc_info()\n", - "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/tornado/gen.py:762\u001b[0m, in \u001b[0;36mRunner.run\u001b[0;34m(self)\u001b[0m\n\u001b[1;32m 759\u001b[0m exc_info \u001b[38;5;241m=\u001b[39m \u001b[38;5;28;01mNone\u001b[39;00m\n\u001b[1;32m 761\u001b[0m \u001b[38;5;28;01mtry\u001b[39;00m:\n\u001b[0;32m--> 762\u001b[0m value \u001b[38;5;241m=\u001b[39m \u001b[43mfuture\u001b[49m\u001b[38;5;241;43m.\u001b[39;49m\u001b[43mresult\u001b[49m\u001b[43m(\u001b[49m\u001b[43m)\u001b[49m\n\u001b[1;32m 763\u001b[0m \u001b[38;5;28;01mexcept\u001b[39;00m \u001b[38;5;167;01mException\u001b[39;00m:\n\u001b[1;32m 764\u001b[0m exc_info \u001b[38;5;241m=\u001b[39m sys\u001b[38;5;241m.\u001b[39mexc_info()\n", - "File \u001b[0;32m~/.conda/envs/sail_act_pyart/lib/python3.10/site-packages/distributed/client.py:2089\u001b[0m, in \u001b[0;36mClient._gather\u001b[0;34m(self, futures, errors, direct, local_worker)\u001b[0m\n\u001b[1;32m 2087\u001b[0m exc \u001b[38;5;241m=\u001b[39m CancelledError(key)\n\u001b[1;32m 2088\u001b[0m \u001b[38;5;28;01melse\u001b[39;00m:\n\u001b[0;32m-> 2089\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m exception\u001b[38;5;241m.\u001b[39mwith_traceback(traceback)\n\u001b[1;32m 2090\u001b[0m \u001b[38;5;28;01mraise\u001b[39;00m exc\n\u001b[1;32m 2091\u001b[0m \u001b[38;5;28;01mif\u001b[39;00m errors \u001b[38;5;241m==\u001b[39m \u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mskip\u001b[39m\u001b[38;5;124m\"\u001b[39m:\n", - "\u001b[0;31mKilledWorker\u001b[0m: Attempted to run task granule-4902ee5ab80d67acd599409b8a32b3c3 on 3 different workers, but all those workers died while running it. The last worker that attempt to run the task was tcp://127.0.0.1:37037. Inspecting worker logs is often a good next step to diagnose what went wrong. For more information see https://distributed.dask.org/en/stable/killed.html." - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:03:25,375 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:03:44,790 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:04:20,309 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:07:19,983 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-201800.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-203919.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-203400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-205520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-204959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-204440.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021703.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023801.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103200.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-085121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-051727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113906.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134044.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-155906.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220359.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210928.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222909.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-232752.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004734.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023227.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031013.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-040032.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051151.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134456.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000948.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-053701.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-005146.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073015.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093605.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095252.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-123626.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-153236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-180747.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-184533.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-214145.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-174959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-174439.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-175519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-172318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-172838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-173359.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-180039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-173919.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-024212.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-060335.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175633.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124200.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073427.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224144.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095703.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-074250.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-120254.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124038.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-183258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005443.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014503.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-032411.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064531.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210516.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165338.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215124.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-181159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-173826.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-150314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224029.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061331.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-071626.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-083155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-125157.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-141551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135452.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-143648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-204142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-212339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-121412.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-180502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-181737.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-180914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-181325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183012.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182149.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064943.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110945.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072316.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142651.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003047.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-011245.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-020717.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033934.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-083310.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-080800.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100115.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-114729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-082611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-162005.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-191202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-174357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230243.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-201456.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024050.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052837.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-072604.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-082858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084957.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020016.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-083722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-113744.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100939.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140431.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-120705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-144628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164806.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-173415.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-184944.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-210359.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212458.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073033.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-074307.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-072209.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-072621.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073856.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071345.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071757.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045217.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-085944.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-060746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-102336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-135730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-025859.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015030.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-201908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042954.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-043405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051602.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-165629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-171727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053825.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-130710.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-090807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235302.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-013755.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092330.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-050739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075525.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084133.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-131411.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154511.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200516.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233500.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015326.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-024347.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-072712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-072153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-065513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-070552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-071632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-073232.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-070032.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-071113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-005720.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065806.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-155455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-095003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144749.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185927.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003459.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022816.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-032659.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-160609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-231402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233049.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000834.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-025211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-074547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-085253.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074826.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125435.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-075650.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-191614.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-193712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200633.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094017.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-104312.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121528.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-151137.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194005.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-220243.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-003344.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-010718.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-031721.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-221125.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-221645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-223245.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-220605.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-222725.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-222205.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-224325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-223805.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-052842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012642.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042255.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063708.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204830.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231929.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-233615.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234439.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125847.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180044.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000537.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001812.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-014618.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022404.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-045052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085408.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-090643.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091507.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-113332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114156.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-132330.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-134450.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-133930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-135010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-133410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-131810.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-132850.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-131250.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030311.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-040608.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-050903.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-050040.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074415.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092042.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092905.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132809.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-093729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-232340.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-025738.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-020305.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044229.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-025036.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055511.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-133220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223321.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234850.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-045504.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151710.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-062721.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112921.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-082446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121116.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102625.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-101350.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-132646.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133920.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-134332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-141706.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-150726.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202614.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-174650.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-090222.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-092902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-091822.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-091302.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-092342.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-090742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-093942.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-093422.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-095415.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094140.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123749.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-133632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-162828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-140553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172300.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202320.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-061609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015442.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-032248.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044640.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062845.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110533.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-045916.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-025326.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-014329.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-041432.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-005309.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-032822.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044805.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122102.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-120004.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150435.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-155043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211751.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-233204.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-014207.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-062309.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-070505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-072152.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-104723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-110410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-123215.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-151549.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-045352.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-042843.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-043255.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-045804.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-043706.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-034510.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-075238.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000125.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150847.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-083846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-083434.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-152945.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-081747.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041308.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-013343.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-005558.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-065231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194829.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-065642.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154922.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-101802.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-195652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-050451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055923.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062433.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-093317.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-090356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145612.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-120416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-182554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-195809.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225419.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012932.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015853.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031836.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054524.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091055.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-172551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-105547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-184121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-222754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-223617.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-002109.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-032712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-025505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-055106.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-202030.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-094547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-233231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-231112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-064953.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-111646.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130136.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-135155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124901.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-135607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-153647.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163942.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-165217.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-232226.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215832.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234324.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-235559.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-002521.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-021425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-055645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-052723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114903.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-131707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-150159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163004.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223910.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-000715.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-224322.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-043817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-112804.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-235440.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024226.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-031148.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-072740.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073603.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 15:12:37,533 - distributed.nanny - WARNING - Restarting worker\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-214428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-215508.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-213907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220027.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-221108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-214948.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-221627.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101925.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-152534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-024624.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225831.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185515.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003911.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212615.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-182143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052550.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-041844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180456.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-082159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100238.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031424.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205241.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183829.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071740.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-040856.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-050328.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-080348.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084545.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-105958.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-090232.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-110822.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161432.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-162256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-162707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170453.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-174238.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-183709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-195240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213733.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000011.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:13:41,746 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:14:02,780 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:14:59,653 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:15:34,992 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:16:08,794 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:18:19,496 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-164622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-185913.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-212834.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-194738.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-083627.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-212751.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104434.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-210811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115430.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213321.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230951.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-003756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-072037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-041605.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-094724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-040330.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-093901.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-035506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-160042.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-170337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-171613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-185651.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-185240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220124.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-184416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-013520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-004048.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-015206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-041856.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043131.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-045641.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-060759.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-071916.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-081759.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-081348.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080524.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-082211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-090408.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095428.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-034627.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-123351.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-043509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-184441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-042719.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-125800.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-104449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-193756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-051315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043942.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031135.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-014741.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-025448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043530.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070218.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-130258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-081336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-195358.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141005.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-102748.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-201044.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215947.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231105.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234027.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-053248.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-011657.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-055347.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-105135.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-111234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121940.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-141254.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154059.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163531.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-180336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-181611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-232637.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-214557.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234736.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-235147.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-002932.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-034231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-060920.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-063429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-045350.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-074135.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115726.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-122647.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153944.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-045746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-230031.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-075224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-015625.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-224337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-050143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-193745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-233652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085820.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-213203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-033234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220947.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-005735.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-001538.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-033646.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013054.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023349.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-034058.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-035333.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-061158.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072728.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124612.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-162417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204418.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004323.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010833.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030601.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021540.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-035209.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041719.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-070054.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081623.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-171316.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-205948.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-221930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-004208.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 15:20:07,469 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:20:29,524 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:20:49,507 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:21:29,400 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:21:47,500 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:22:07,713 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:22:47,222 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-013640.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-124745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105430.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-101234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-130020.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-120137.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135040.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-174122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-181043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-184828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193436.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-201632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-222223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-203731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024638.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223458.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-013108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-011833.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-040208.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-041032.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-054701.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131136.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-113919.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134920.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145216.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-141019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-160746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-190805.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-174825.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-173139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-215140.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-221650.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-225023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-012535.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-025341.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-053716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-035224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-075542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-082052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131015.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-102229.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-114211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-133526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142133.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165338.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-110410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044640.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-222342.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230539.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-020150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-033407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042017.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-044527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-063018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065116.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065939.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-084842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-090116.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-095136.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114450.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-151846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-142414.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-145747.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-162552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193847.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112233.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-212219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-022830.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012642.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042255.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063708.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125847.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204830.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231929.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000537.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234439.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-045052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001812.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091507.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-070505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015326.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-104608.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-170749.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-235028.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-114331.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-222513.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 15:23:15,646 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:23:41,790 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:24:05,293 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:24:23,517 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:24:47,951 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:25:03,668 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:25:23,168 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:25:41,456 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:26:01,361 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-085544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-092507.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-092918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093741.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100252.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-110958.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-111410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-153000.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164942.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-102921.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-180512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-183844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-201100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-195002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-202335.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-210532.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-230710.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231533.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-232357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-005613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-235319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-000554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-021143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023654.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-040911.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-041322.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-044244.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-045519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142957.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-105603.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-200531.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-210414.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-140610.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-014329.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-065231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-065642.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154511.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194829.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-050040.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064943.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072316.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-174357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-201456.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015030.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-032248.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-074250.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033934.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-083310.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042131.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084133.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 15:26:16,634 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:26:32,176 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:26:49,574 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:27:09,817 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:27:29,008 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:27:57,052 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:28:18,043 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:28:31,899 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:28:47,541 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:29:04,496 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:29:31,958 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:29:54,115 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:30:03,040 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-100102.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-195922.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-214729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-082950.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-120838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-000840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-160902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-235246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180044.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-122543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212909.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-194711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000011.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-114729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045217.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124200.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164806.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212458.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-223617.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-011129.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 15:30:22,692 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:30:41,251 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:30:59,250 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:31:17,440 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:31:27,101 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:31:41,839 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:32:02,832 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:32:18,500 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:32:40,427 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-114210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-121757.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-011818.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-020717.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-153756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-175525.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-031101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-003001.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000248.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000700.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002347.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085408.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-070351.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050916.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-205006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021715.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132809.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105710.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-040608.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-090807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205241.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224144.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005031.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-120549.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005854.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-183553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124901.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 15:33:02,007 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:33:19,071 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:33:33,320 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:34:23,005 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:34:31,690 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:34:43,979 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:35:00,297 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:35:33,904 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:35:54,302 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:36:15,703 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:36:42,235 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:37:00,458 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:37:16,230 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:37:33,900 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:37:53,542 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:38:08,478 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:38:22,668 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:38:38,696 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:38:54,980 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:39:11,677 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:39:25,311 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:39:37,803 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:39:49,257 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:40:05,908 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:40:19,502 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:40:33,153 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:40:42,348 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 15:41:00,566 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 1668 in H5Aexists(): invalid object identifier\n", - " major: Invalid arguments to routine\n", - " minor: Inappropriate type\n", - " #001: H5VLint.c line 1749 in H5VL_vol_object(): invalid identifier type to function\n", - " major: Invalid arguments to routine\n", - " minor: Inappropriate type\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 1668 in H5Aexists(): invalid object identifier\n", - " major: Invalid arguments to routine\n", - " minor: Inappropriate type\n", - " #001: H5VLint.c line 1749 in H5VL_vol_object(): invalid identifier type to function\n", - " major: Invalid arguments to routine\n", - " minor: Inappropriate type\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-204307.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-050727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-021020.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-232954.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-012116.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-140035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-043021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092042.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-041844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103200.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125435.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134044.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185927.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212615.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231929.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095252.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091055.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194005.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015326.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-120137.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065116.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-124745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-151846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-162552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-171613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-181043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193436.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-011833.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003047.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-075250.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064544.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-042347.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-103339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-203602.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-164143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-010106.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-002652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-220605.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-094425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-025036.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234850.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133920.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121116.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015030.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-111646.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-135607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163942.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234324.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-011541.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234736.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-083155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-082159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073015.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165338.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-102336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001246.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 15:44:38,967 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.14 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 15:46:47,028 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-202210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-143908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-231406.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-212944.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-055527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-103359.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-150444.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-033118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033934.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-082446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213321.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-220655.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-085253.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-035506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-004048.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-060759.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-071916.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-011129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224852.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015738.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-054410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-101939.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103625.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-105723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-165805.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-180100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-171903.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164530.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-190805.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-191629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-221650.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-075301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-180056.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-104222.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-141800.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-212424.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-060436.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-092428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074415.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004323.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-130843.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-071214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-184416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-003756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-231814.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222458.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-045802.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-161729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-072449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030601.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-020428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-235440.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-094153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-023124.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-135332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-150902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-022419.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-113228.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-012006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-154521.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-215837.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-222347.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-075826.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-113223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-152722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-104717.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-190839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-200719.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-071402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-080722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-120203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-131643.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-135924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-211646.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-092222.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-071427.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-165228.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-233102.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-051247.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085820.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-233926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-114145.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-123629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-152945.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-012939.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-030423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-093729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185515.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092905.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202320.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110945.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051151.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-043405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075525.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061331.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-041154.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-010718.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-102802.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-130312.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-185941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-220415.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-022830.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-223336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-095719.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-041734.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-140858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-165235.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-193609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-202217.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-212100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-041617.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-042852.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-081108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-092639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-114914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-185933.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-070101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-230250.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-102223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-194130.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-112931.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-141716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-161855.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-045804.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050216.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-074702.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055923.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-160157.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-090036.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-232349.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-000220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-183709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-221622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-085944.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-135730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-020305.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022404.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031424.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022816.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092330.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-090643.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-104312.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-131822.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230951.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233049.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-025211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053135.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-060508.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-072037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-093901.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-102057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-191338.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-224322.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-013108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-035224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-222101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-211237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-175227.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-154933.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-171737.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-012819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-213327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-042843.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-065119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-070354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-131306.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-134639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-154409.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5Dio.c line 280 in H5Dwrite(): dset_id is not a dataset ID\n", - " major: Invalid arguments to routine\n", - " minor: Inappropriate type\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5D.c line 141 in H5Dcreate2(): unable to create dataset\n", - " major: Dataset\n", - " minor: Unable to create file\n", - " #001: H5VLcallback.c line 1806 in H5VL_dataset_create(): dataset create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 1771 in H5VL__dataset_create(): dataset create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_dataset.c line 73 in H5VL__native_dataset_create(): unable to create dataset\n", - " major: Dataset\n", - " minor: Unable to initialize object\n", - " #004: H5Dint.c line 396 in H5D__create_named(): unable to create and link to dataset\n", - " major: Dataset\n", - " minor: Unable to initialize object\n", - " #005: H5L.c line 1767 in H5L_link_object(): unable to create new link to object\n", - " major: Links\n", - " minor: Unable to initialize object\n", - " #006: H5L.c line 2009 in H5L__create_real(): can't insert link\n", - " major: Links\n", - " minor: Unable to insert object\n", - " #007: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #008: H5Gtraverse.c line 613 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Callback failed\n", - " #009: H5L.c line 1802 in H5L__link_cb(): name already exists\n", - " major: Links\n", - " minor: Object already exists\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 1668 in H5Aexists(): invalid object identifier\n", - " major: Invalid arguments to routine\n", - " minor: Inappropriate type\n", - " #001: H5VLint.c line 1749 in H5VL_vol_object(): invalid identifier type to function\n", - " major: Invalid arguments to routine\n", - " minor: Inappropriate type\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-081415.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-101135.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-153644.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-010220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-044035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-013915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-063551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-162417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-035209.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225831.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-101802.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-144628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-003927.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-003515.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-104608.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-100823.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-064253.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-042029.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-012124.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-080355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-054539.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064305.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-175529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-215544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-004622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-062042.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-101517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-112957.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-175824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-185709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-214840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-151446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204418.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041719.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234439.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081623.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145216.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-031019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-071336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-180445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-080807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-145804.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-194045.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-202845.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-031941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-081821.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-022626.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5D.c line 320 in H5Dclose(): not a dataset ID\n", - " major: Invalid arguments to routine\n", - " minor: Inappropriate type\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-022709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-063148.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-155401.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-141124.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-224454.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-131703.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-152611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-081348.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044229.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-134744.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-233615.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084545.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215832.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-235559.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-143648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163004.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-055645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-225716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014503.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223910.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-194139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-155511.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112233.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-165514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-152137.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-010437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-100542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233053.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-102229.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-055245.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213335.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-110832.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091403.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-062609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-093907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-135502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-184845.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-030315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-162606.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-030835.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-090557.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-144158.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-162839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211211-224739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-081242.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-002340.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-011700.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-070342.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-013300.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-123423.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-031627.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-010832.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-033233.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214438.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000700.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-153756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-005540.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023801.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-031101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072728.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-033234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-051727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042255.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013054.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124612.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210928.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113906.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220359.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-013343.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124901.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093605.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-153236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-222342.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024638.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-001538.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-072740.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073151.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-162432.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093330.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-193315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-204433.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-025341.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-170159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-065350.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-221224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-193627.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-140704.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-003117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-000327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-034058.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204830.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-232752.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062845.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004734.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-050739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031013.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-123626.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124038.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-014754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-045519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095016.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-030205.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100704.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-130152.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-145507.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-170058.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-230552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-194432.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-174706.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-095600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-145800.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-030046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-033529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-042550.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-043413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-064414.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-071748.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-094850.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-114206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-140441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-212052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-042431.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-094730.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-041755.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-081910.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-045132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064717.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-083102.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-061122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-070351.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-230458.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002347.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000248.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-040608.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-035333.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-024212.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045217.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-075650.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-095003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105710.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-083846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-090807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-111808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-140553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180044.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224144.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021540.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051602.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085408.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-120254.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-183258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-205948.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-195240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005031.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-034642.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-095136.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061743.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-153234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220947.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-164201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-091254.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-075224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-131010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-023300.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235302.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065806.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-005146.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123749.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-155455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-152534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134456.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154922.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-080348.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-231402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200927.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-044527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-021425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-131707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-174122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-013640.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-063018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-035345.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-082623.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-090820.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043131.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080524.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-090408.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-045641.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-101527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131136.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-140607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-190353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-140155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-174413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-083327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-184548.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-212512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-235613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-073324.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-011554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-062206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-221532.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-104208.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-122247.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-123523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-062316.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131015.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-034206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-173139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-233114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-185511.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-185530.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-015515.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023349.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132809.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000125.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010833.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230128.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005854.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-045350.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-095547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-102921.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232106.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-123059.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-020029.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043954.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-044817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-054701.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100252.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-183844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-203158.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-232357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-000554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-051618.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-040911.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-070522.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142957.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-144232.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213747.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-231004.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-072049.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-175012.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-210200.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-120341.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-031019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-092334.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-175538.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-234337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-222213.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-114729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124200.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-182554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-212909.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-092742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005443.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153532.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-160905.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-122647.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-213203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-030325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-030737.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-181335.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231533.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023654.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-043421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-052441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-054951.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-180352.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-041206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-181215.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-151034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-203151.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-201052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-031842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-175934.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-225308.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-013231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-020153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-071218.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-072041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-155644.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-130030.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-190230.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-223634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-211114.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-010841.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-213932.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-041518.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-093929.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211211-233540.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-084019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042017.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-231111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144749.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-110547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-015206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073603.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-155059.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-015908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071345.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-102640.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-081640.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-182901.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-082052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-232651.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094017.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-030156.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-022300.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-114618.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-231354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-225754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-224445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-003915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114156.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-171727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-221518.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000834.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-033407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-020150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-141139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-031721.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-161317.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-034110.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-035757.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-040620.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-092055.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-092918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-225023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-205551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-012535.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114903.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-005735.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-013520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024226.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-085544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093741.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-161609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-195002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-201512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-002240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-210532.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-120308.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-191510.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-191922.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-235201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-060519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-103756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-004742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182149.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-121539.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-165639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-041155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-002525.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-082336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-161743.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-122657.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-230314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-100957.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-204433.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-075636.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-105757.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-132158.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-160718.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-174839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-174845.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-223126.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-232440.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-025801.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-005026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-225806.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-093503.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-165224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-200425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-235346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-003106.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-231106.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-063908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-035347.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-142310.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-083114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-105515.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-035246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-095528.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-054447.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-115808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-101128.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-111410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-153412.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-220003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-001828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-173019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-050225.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142545.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-035107.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-053558.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082906.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-121127.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-152423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-215014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-153246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-040744.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-063021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-093455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-104614.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-213739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-105438.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-164705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-194033.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-200154.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-041236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-024155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-155118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-215400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-221520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-030841.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-103123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-131124.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-113523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-082323.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-155644.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-023140.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-012226.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-053501.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-204139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-054541.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-064422.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-112143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-154304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-180705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-205225.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-075908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-002546.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-195351.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-072154.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-074314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-100155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-004046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-104955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-010206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-063247.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-080328.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-221651.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-130209.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-015532.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231945.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-050754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023242.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-030616.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-055814.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071757.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-171332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-182450.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142133.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-210414.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-010319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-111953.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-122659.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-174815.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-040039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-210935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-111536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-035509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-115734.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-134227.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-121010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-140738.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-001754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-102037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-091117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-131118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-094843.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-164444.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-121243.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-182605.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-200206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-082902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-062101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211211-232459.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-234826.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-094029.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-114309.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-192151.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-131349.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-055114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-095115.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-012952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-232045.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-000326.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-032046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-151529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-065407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-063253.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-041933.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-064853.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-160856.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-203017.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-010738.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-032619.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-035819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-041419.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-042459.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-073140.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-081420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-012823.b1.nc\n", - "SUCCESS \n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-120723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-160746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-125449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-234600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-013354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-102829.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-114211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-124912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050916.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-204142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134920.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-011010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-202907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-132411.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-150736.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-214720.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-142014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-141019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-135618.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-035636.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-133526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-095142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-083357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-125207.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-081236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-160056.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-112400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-220440.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-175919.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-075944.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-141023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-051122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-091902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-093828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-023907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-170045.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-024746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-020500.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-080742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-043627.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-001512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-192611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-225902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-093414.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-125109.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-040309.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-091750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-001354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-163512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-103237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-152038.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-153638.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-114729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-230451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-154718.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-003001.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-052842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-081219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-151600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-001240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-094342.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-114103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-215059.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-010300.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-015100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-045221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-052941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-064942.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-080422.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-181745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-182825.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-192705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-225506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-000426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-070548.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-134549.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-192711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-135630.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-200431.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-071114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-085234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-231005.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-031006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-050207.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-063807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-090728.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-091808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-131809.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-152049.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-162450.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-212851.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-225931.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-234211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-041413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-213937.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-225417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-234738.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-024858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-071020.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-123021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-211741.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-235222.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-084545.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-134946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-165626.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-024829.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-030429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-114151.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-032549.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-142152.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-142712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-162952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-001914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-212834.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-005635.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-165119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-112037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-173919.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-180559.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-000840.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-063844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-132129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-171216.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-092631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-180648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-015355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-043356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-163359.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-181519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-203400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-004441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-014321.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-064722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-082842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-074042.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-101003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-171125.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-212206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-043941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-200745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-211145.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-190025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-202545.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-214545.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-204705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-073228.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-165230.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-195911.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-002035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-223245.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-031526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-064847.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-151009.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-173930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-030453.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-091814.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-095534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-172336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-195257.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-014458.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-004618.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-041939.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-082500.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-090220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-101140.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-143822.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-154222.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-212302.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-063744.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-055504.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-083504.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-162946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-201907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-210147.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220027.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-223228.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-030949.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-072030.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-151512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-131231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-180033.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-170713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-184313.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-193005.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-054322.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-134318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-011140.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-050101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-012746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-233220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-005220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-133504.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-094543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-152704.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-174545.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-011346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-104429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-175111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-045754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-095008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-071634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-100608.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-113128.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-135529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-015538.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-021658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-033659.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-163542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-045104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-070424.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-171753.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-235228.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-190953.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-212314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-012315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-131758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-133918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-205120.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-114724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-101123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-070950.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-040220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-032601.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-201406.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-172331.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-090215.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-220619.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-112056.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-131751.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-221139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-191103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-052946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-134548.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-122028.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-120838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-150028.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-172429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-201926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-052426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-184429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-030551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-193750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-084153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-031534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-035918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-061238.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-125023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-185824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-061547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-112709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-004140.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-023912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-065514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-070034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-104435.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-045127.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-060047.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-130729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-081408.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-142209.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-164050.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-214451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-220611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-072613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-035259.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-121421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-092900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-145942.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-012303.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-064304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-080824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-090705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-185907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-224828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-145912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-090150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-193113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-200313.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-080836.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-171239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-202440.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-030441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-190445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-193126.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-020607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-054448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-064328.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-153131.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-164611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-170731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-190452.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-013933.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-014453.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-065935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-103256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-185938.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-204618.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-233139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-234739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-025420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-165743.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-201504.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-215104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-043626.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-142828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-211350.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-015631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-182315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-231636.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034805.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-142539.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-131422.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-032254.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-123226.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-211229.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-023937.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-024349.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-030448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-145759.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-015915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-225234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-022555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-203919.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-015401.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-015420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-110323.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-201805.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-031421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-102622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-194105.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-134543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-230546.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-005233.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-221232.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-060148.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-060154.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-023353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-101238.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-103355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-235806.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-001926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-233652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-224851.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-033653.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-223258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-210217.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-013938.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-153702.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-152026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-111505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-162426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-233628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-000828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-005628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-114711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-125111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-194153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-043516.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-072556.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-102717.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-150438.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-002441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-201919.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-064842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-112603.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-184325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-011807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-100049.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-210212.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-073129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-142731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-061134.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-183553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-205006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-194711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-140316.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-222223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021715.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-014634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-013810.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-002122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-214729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-060931.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-081932.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091815.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-092340.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-201758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-154821.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-200713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-223114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-231914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-072436.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-120158.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-173759.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-002840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-100443.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-154044.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-065301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-073021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-172224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-082348.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-094348.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-151104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-140144.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-230026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-033227.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-024326.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-215531.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-185410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-152609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-092854.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-021132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-171816.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-231538.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-040859.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-052900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-053940.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-132901.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-063819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-165142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-160902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-010702.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-032543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-194707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-014949.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-182719.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-054956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-212320.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-052322.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-195806.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-101022.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-055427.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-172938.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-193219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-123623.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-194825.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-195345.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-214025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-024947.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-042027.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-071628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-120949.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-151630.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-191111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-211911.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-054034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-061127.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-075354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-125129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-183250.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-200331.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-235252.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-173936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-145421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-181137.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-162502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-033103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-061624.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-095505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-154706.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-130145.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-214428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-064310.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-222148.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-233108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-023748.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-094430.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-150432.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-192033.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-201353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-114157.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-182159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-193639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-032555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-065916.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-200320.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-200839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-021121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-031521.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-062728.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-055014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-105409.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-181125.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-094455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-014500.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-193138.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-072621.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-004705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-074741.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-120342.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-170303.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-010305.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-013235.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-080157.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-121757.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-201800.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-171119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-205520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-212720.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-024201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-121803.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-153004.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-174325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-153524.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-195645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-222606.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-112502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-193544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-224426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-151110.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-234626.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-021747.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-211351.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-063914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-064434.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-111635.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-062207.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-143809.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-144849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-003012.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-232051.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-201931.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-094454.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-095014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-102734.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-015018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-222218.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-023259.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-020023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-224302.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-213347.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-132306.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-042949.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-140552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-065910.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-161912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-172313.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-230954.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-040835.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-025915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-045115.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-111517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-125118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-001920.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-004601.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-031002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-135004.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-143244.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-204606.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-004607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-012847.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-034208.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-123010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-135010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-184852.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-123111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-180050.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-181737.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-053256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-103910.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-133520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-212915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-040332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-165529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-105849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-170804.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-173726.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-180236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-233514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-000154.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-034035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-121237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-163918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-064202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-100502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-183905.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-041507.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-050307.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-060708.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-175631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-174551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-230032.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-051354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-225512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-094035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-184504.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-225405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-111529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-051807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-222211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-005658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-154742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-024303.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-052304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-154146.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-033629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-215508.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-075750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-102711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-090710.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-104831.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-170153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-232034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-034155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-044555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-234200.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-102203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-015001.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-124604.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-160325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-211246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-042448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-084609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-100609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-105929.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-182211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-012333.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-082455.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073856.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-074307.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-000848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-183725.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-100423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-155047.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-065649.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-105146.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-230955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-010721.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-060511.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-215914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-065236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-170558.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-171639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-204959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-010041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-104203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-140444.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-010620.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-201305.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-053307.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-180658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-013507.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-032147.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-035907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-044147.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-203631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-204711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-050314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-080434.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-110035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-043527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-072047.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-141649.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-144329.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-143249.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-180050.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-194731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-193651.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-001932.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-012852.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-014452.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-010218.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-083020.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-140102.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-151022.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-222141.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-065904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-130706.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-151506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-164546.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-182707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-041909.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-045629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-140032.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-205113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-222714.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-034715.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-230441.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-224714.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-052156.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-070316.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-122318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-123918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-133238.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-071922.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-005020.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-072442.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-013306.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-100703.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-175624.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-210305.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-092949.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-073754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-125230.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-094555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-045647.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-085648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-090208.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-092848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-111008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-140049.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-145929.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-164610.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-035253.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-111535.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-070500.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-100100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-101700.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-210701.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-050143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-082424.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-082950.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-144306.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-080310.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-000314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-004555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-221640.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-184839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-032041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-054442.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-051242.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-070442.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-134444.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-221126.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-235246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-132850.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-052334.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-111536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-175018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-221659.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-024900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-045701.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-053421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-164703.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-054546.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-180149.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-163629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-230031.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-055632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-080953.b1.nc\n", - "SUCCESS SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-220708.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-015750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-012715.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-053708.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-052716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-074556.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-224720.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-091637.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-003921.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-053242.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-133804.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-110843.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-175925.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-221006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211211-225259.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-225246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-233740.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-113022.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-193745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-170824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-180145.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-211345.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-001506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-030547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-085748.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-062314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-071007.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-094448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-115248.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-181130.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-204057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-233658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-142742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-045624.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-152546.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-131745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-054423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-211747.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-222708.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-051229.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-070430.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-092310.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-130711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-121911.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-201913.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-164552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-213353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-045635.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-103757.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-162959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-194719.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-003007.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-110449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-092849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-133930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-155811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-221653.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-200858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-000859.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-061746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-215110.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-123023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-021231.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:13:28,288 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:13:51,806 - distributed.nanny - WARNING - Restarting worker\n", - "2023-05-22 16:13:55,556 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:15:06,731 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-155256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-002458.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-053420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-064339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-144902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-135541.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-022703.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-061104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-081344.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-140546.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-171227.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-180546.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-205627.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-011228.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-115231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-113111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-153632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-030435.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-215520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-221120.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-021641.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-053402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-124044.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-121923.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-142724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-170725.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-210206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-224846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-094449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-043528.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-132330.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-133410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-143250.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-143810.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-202452.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-225933.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-002452.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-010212.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-011813.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-034214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-121416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-144857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-180058.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-091822.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-154826.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-062826.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-083627.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-040952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-071113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-101753.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-131354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-142314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-162035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-212956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-002037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-011357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-042558.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-045238.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-065519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-203122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-183921.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211230-010843.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-192709.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:15:19,231 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:15:32,816 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:15:36,283 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.19 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:15:47,207 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:16:28,961 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.13 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:19:11,947 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:19:12,034 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.30 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:19:34,936 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-133924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-191005.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-114210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-211812.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-085117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-203520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-023253.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-164617.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-080855.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-103907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-120948.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-080341.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-224834.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-115803.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-144838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-113656.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-194315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-020717.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-204716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-100102.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-010837.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-064958.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-022837.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-150040.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-102319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-174601.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-215642.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-092439.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-174451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-115400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-184441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-220722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-232716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-203630.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-130314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-211356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-005237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-123640.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-093507.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-210842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-021121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-064310.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-193219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-035209.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-062042.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092905.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061331.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-161729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-005735.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100252.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-171332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-180100.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:19:42,311 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.27 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:19:42,343 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.29 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:21:00,453 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.12 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:21:00,678 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.43 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:21:48,543 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "2023-05-22 16:22:06,899 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 10.27 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "2023-05-22 16:23:21,508 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-082956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-092959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-145520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-150600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-114730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-070026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-193756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-181241.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-085759.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-213522.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-105422.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-225003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211230-020723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211230-025003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-205242.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-160423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-103302.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-090319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211230-014603.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-111639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-094039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-192033.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-094455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-115354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-042027.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-145804.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-151446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-145421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-042029.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224555.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-121116.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213321.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-041154.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-071214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-102921.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103625.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-162432.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-225716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-195002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-081348.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-232357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023242.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-210935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-165235.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-102223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-105146.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134920.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:24:22,637 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:24:41,408 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-060608.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-201932.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-231013.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-234733.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-233133.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-120856.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-143817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-183258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-010739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-175103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-024340.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-045746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-160949.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-182309.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-233231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-051352.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-123120.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-031941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-234837.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-072621.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-182159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-033103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-080355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-151630.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000700.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-043119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110945.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225831.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085820.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093605.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230128.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-231814.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-060759.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-193315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-152137.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-041734.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-072049.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-100423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-122659.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-070101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-165639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-202210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-202907.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-052716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-060511.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-184845.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:25:43,643 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "/gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-131816.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-142216.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-225939.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-004145.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-110027.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-015625.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-190029.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-112147.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-225510.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-014031.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-045752.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-105513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-040958.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-091919.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-072159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-213002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-223402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-120949.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-193138.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-162502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-134554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-114157.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-202845.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124901.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-111646.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234850.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033934.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023349.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-035506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-083155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-054701.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093741.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-101939.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-165805.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-022830.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-055645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213335.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-092639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213747.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-121539.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-215837.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050216.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-105849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-181519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-162839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-121010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-174839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-065236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-214720.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-234600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-004441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-064202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-045654.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-054454.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-101656.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-102222.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-194304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-211904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-123107.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-124148.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-214550.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-102313.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-004151.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-114834.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-121514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-173515.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-075358.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-032555.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-211911.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-022626.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-095505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064305.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-074741.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-010317.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041719.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222458.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234324.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-010718.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-171903.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-173139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112233.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-204433.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-183844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-182450.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-193609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182149.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-194130.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-053256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-093907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-075826.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-001754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-015355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-160718.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-171125.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-011700.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132809.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:27:47,215 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:29:17,127 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.17 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:17,216 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.17 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:17,316 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.21 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:17,416 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.21 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:17,517 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.21 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:17,616 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.31 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:17,716 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.33 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:17,817 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.33 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:29:17,915 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.37 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:18,016 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.43 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:18,116 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.44 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:18,216 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.45 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:18,315 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.45 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:18,500 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.45 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:29:23,723 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042542.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-081415.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-101135.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-153644.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-010220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-003927.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-063551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204418.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-093729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165338.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234439.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-233912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232106.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024638.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215832.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-135332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024226.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-185530.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-000554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-010437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-055814.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-063148.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-035509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-212915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-160056.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-103339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-161743.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-034035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-060436.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-010041.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-232651.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-234337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-012116.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-013231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-062609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-063021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202319.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-071106.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-140032.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-070548.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-204959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-162450.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113906.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-101802.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-000125.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-042428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114903.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-123059.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-135904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-004048.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-051618.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-191629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-100542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-120308.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-010319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-230955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-122657.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-131118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-162606.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-001240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-114211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-135618.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-095115.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-023912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-044147.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-144950.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-214840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-093828.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-051151.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081623.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103200.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124200.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160730.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-084545.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-215536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-033407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193436.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-160905.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-102802.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-220003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-012535.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-034058.b1.nc\n", - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-203602.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-074221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-092428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-162445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-005540.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-093503.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001935.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-104846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-054410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-221650.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-040911.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-175824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-000848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-111953.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223910.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-044229.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091403.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-040332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-121237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-190839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-094843.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-165224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-012952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-050314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-054447.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-115808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-204142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-095142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-024746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-051354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-161930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-031721.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-015908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-003915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-012715.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-233740.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-213203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-182554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091055.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-104614.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-052156.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-082323.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-125230.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-072154.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-065407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-234211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-014452.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213849.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-170153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-182211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-222211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-031101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-100609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-075750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-082159.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133920.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-073015.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-065527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-095547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083446.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-004742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-130312.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-014503.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-233926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-103910.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-110832.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-142014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-051122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-231406.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-081242.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-132158.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-071628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-033233.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-105515.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212203.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-052441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-182846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-022300.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-145628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005443.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064544.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-091637.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-072041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073139.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082906.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185927.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-124745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-024155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-072442.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-110843.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-064422.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-085748.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-112400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-095600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-224426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-080157.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-080328.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-090728.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-130729.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-013507.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-010721.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013054.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-194212.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214438.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-195922.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-143249.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-194417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124612.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-193142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-102214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224852.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073151.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-085253.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-044817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-184416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-235559.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-191510.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-144232.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-033118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-155047.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-133526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233053.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-215914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-071402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-030835.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-101517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-230314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-170045.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-020150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-103611.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125435.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-040620.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095252.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-001828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-140035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-220708.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-151034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-093455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-010841.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-211114.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-113523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-180445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-225246.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062845.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-013235.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-070342.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:31:17,635 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-203631.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-220547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-153121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-012939.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-061655.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073856.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-051727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-210532.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142133.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043954.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-065649.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-142957.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-081219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-134744.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-180050.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-152722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-141716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-165529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-180236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-102037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-163918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-170558.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-043941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-211646.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-104222.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-011010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-192705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-125207.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-155059.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-015750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-224445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-080742.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-174551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-225506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-051807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-003047.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-030325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-173019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-201052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-105438.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-123918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-070316.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-042431.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-230552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-222606.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:31:38,656 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:32:59,444 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.01 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:32:59,529 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:32:59,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:32:59,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:32:59,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:32:59,928 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,029 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,130 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,329 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,429 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,630 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.02 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:00,928 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,028 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,130 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,328 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,428 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,529 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,829 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:01,929 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,028 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,128 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,329 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,428 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,729 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:02,928 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,030 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,129 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,229 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,329 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,429 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,630 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:03,928 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,029 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.03 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,128 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,328 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,429 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:33:04,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,828 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:04,929 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,029 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,128 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,229 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,330 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,459 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,720 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,728 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,829 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:05,929 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:06,030 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:06,129 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.06 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:06,228 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:06,329 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:06,429 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:06,528 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:06,628 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:06,730 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.07 GiB -- Worker memory limit: 15.72 GiB\n", - "2023-05-22 16:33:09,169 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:34:06,570 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:34:53,487 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-084043.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-065513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-201512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-054459.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-003526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-101142.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-143746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-002240.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-143648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231929.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-000834.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-051037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-181043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-110547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-141019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-223336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-082052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-171332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-153412.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-205551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095016.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-114914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-081108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-041206.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-064414.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-153246.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-195240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-140738.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-190230.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-180044.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-231517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-131306.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-200713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-014321.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-024201.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-211229.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:35:15,812 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:36:37,648 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:37:02,628 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-224834.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-033752.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-114210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-090705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-230024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-220722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-190445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-041844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-072728.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114156.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-210928.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-004323.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134057.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-235440.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-171613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185356.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-221518.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-155511.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-052425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-222458.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-171903.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-010718.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164118.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-183844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-225023.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-091219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-022816.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-072037.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-035636.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-025341.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-045519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112233.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-174413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-074307.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-180352.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-231004.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-002122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-230128.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-201915.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-182149.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-040039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-230250.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-114618.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-043413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-142539.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-100649.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-154933.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:39:07,144 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-222342.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-072740.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015326.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-091822.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-123111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-065519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-065514.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110121.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184652.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-200104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-035333.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-024502.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-050739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033111.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130547.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-032956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-061743.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-090643.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-084019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-114039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-071916.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-035757.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-143941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-193609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-200221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-123626.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-125449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-213747.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053002.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-125435.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224852.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172727.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-172315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-044817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-133645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202202.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-055113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-180100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-235613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-205551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-144232.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:40:31,044 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-110035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-010837.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-114729.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-080855.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-040309.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-043421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-103254.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-065928.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-135607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-220359.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-141416.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005854.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-172711.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-151846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-015738.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-141139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-145201.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-033523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-183553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-105723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-112645.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-164530.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-085944.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-131822.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021715.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-030616.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-100704.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-050754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-042852.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-154922.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-035345.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101817.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-060931.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064717.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-032254.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-210935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-121127.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-065119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-082336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-111536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-134227.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-023639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-225754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-063551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-220655.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-030315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-081236.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:40:52,303 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-064132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023801.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-204307.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-230451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-144158.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-203437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-153756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042255.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092042.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091918.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-212615.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-102336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-162552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-050916.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063956.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-041719.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-234324.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-211339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073603.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-065407.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-060622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053135.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-134456.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-063018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-085544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-140155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-182450.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-111410.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-034110.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-183725.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-211237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-031019.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034805.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-150736.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-042550.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-155118.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-015401.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-205520.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-192201.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-020153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-204830.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-225716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-020150.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-004622.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-133238.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235302.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-164444.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:41:50,125 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:42:09,819 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 7:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:42:26,816 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:42:44,925 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:43:05,752 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:43:31,427 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:43:49,472 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:44:06,359 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:44:26,605 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:44:44,777 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:45:08,375 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:45:31,855 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:45:54,045 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:46:12,414 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:46:32,920 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-003001.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-205756.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-061122.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-202210.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-193627.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-091353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-020717.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170613.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-045217.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-110945.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-010421.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-143103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-094552.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-104312.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-115842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-124038.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-213321.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-071214.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215420.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-071329.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-120018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-211634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-122647.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-161317.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-103625.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-232357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-195534.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022526.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-040608.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074415.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-112632.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-083846.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-113043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-123749.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-173123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-175221.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185515.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-221634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021952.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-074702.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-112509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-114607.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-191043.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-185530.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-215832.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-061857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-005443.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-221811.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-020305.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030150.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-070522.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-021425.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-083446.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:47:09,166 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:47:26,493 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "2023-05-22 16:47:46,413 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:48:02,519 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:49:28,718 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:49:58,798 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-172848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-233615.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-234600.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-092639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-035506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-190339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-011554.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-133804.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-062021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-081108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-044529.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-031721.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-023907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-130030.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-015420.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-175824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-104429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002758.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-030723.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-222223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-101405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-082455.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-222101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-194139.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-094843.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-131010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-015030.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-035209.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-090036.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-093503.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-165224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-135630.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-094342.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065806.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-122926.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021129.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-071453.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-124745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-123059.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043954.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-115141.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-053838.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095016.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-220003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-052441.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-215544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-194711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-062446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-115737.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-080355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-103910.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-142724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-120137.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-143353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-105146.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-085759.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-133520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-184548.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-160318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131946.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-164103.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-054237.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-124612.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-165750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-181319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-003210.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-042542.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-234850.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-022114.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002224.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-142239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-213437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031424.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-034346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-095252.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-093605.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-163942.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-041154.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-205948.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-105842.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-111941.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-215712.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-163828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024638.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-214438.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-161553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-085408.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-140018.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-080524.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-092905.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-090408.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-093741.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-135332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-001828.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-055245.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-050225.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-201052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-062316.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-213327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-233053.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-184845.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-075826.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-151446.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-225234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-101517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-120158.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-071402.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:52:20,401 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 6:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-180220.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-032601.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-195002.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-034353.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-212944.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-144329.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-213926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-160746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-154355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-002347.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023349.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-052138.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080513.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-031959.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105710.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-044354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-131534.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-012108.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144749.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-185104.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-075525.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-031013.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-030601.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-054936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-132357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-011407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-203143.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-152824.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-175101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193024.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-053135.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-012405.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-070629.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-202907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-223046.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-024226.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-043542.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-131547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-010437.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-045641.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-041734.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-002635.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-063148.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-233926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-174706.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-140035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-171332.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-234337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-100423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-104208.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-053708.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-102223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-212052.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-161855.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-215014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-013231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-060511.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-154821.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5O.c line 551 in H5Oget_info3(): can't get data model info for object\n", - " major: Object header\n", - " minor: Can't get value\n", - " #001: H5VLcallback.c line 5603 in H5VL_object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #002: H5VLcallback.c line 5566 in H5VL__object_get(): get failed\n", - " major: Virtual Object Layer\n", - " minor: Can't get value\n", - " #003: H5VLnative_object.c line 243 in H5VL__native_object_get(): object not found\n", - " major: Object header\n", - " minor: Object not found\n", - " #004: H5Gloc.c line 815 in H5G_loc_info(): can't find object\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #005: H5Gtraverse.c line 837 in H5G_traverse(): internal path traversal failed\n", - " major: Symbol table\n", - " minor: Object not found\n", - " #006: H5Gtraverse.c line 754 in H5G__traverse_real(): traversal operator failed\n", - " major: Symbol table\n", - " minor: Can't move to next iterator location\n", - " #007: H5Gloc.c line 773 in H5G__loc_info_cb(): can't get object info\n", - " major: Symbol table\n", - " minor: Can't get value\n", - " #008: H5Oint.c line 2194 in H5O_get_info(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #009: H5Oint.c line 1051 in H5O_protect(): unable to load object header\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #011: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #012: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - " #013: H5Ocache.c line 203 in H5O__cache_get_final_load_size(): can't deserialize object header prefix\n", - " major: Object header\n", - " minor: Unable to decode value\n", - " #014: H5Ocache.c line 1202 in H5O__prefix_deserialize(): bad object header version number\n", - " major: Object header\n", - " minor: Wrong version number\n", - "2023-05-22 16:53:38,871 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-085253.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050216.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-080722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-012746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-154304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-011140.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-092222.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-011346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-151630.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-003927.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-054539.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-111953.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-023242.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-183423.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-033234.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-153236.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-170904.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-224322.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-071218.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-230314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-200713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-023801.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055923.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-080101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-140553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-184240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-224144.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-161844.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-164354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-192730.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-001658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-193436.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-051327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-073603.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-130312.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-181215.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091403.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-071628.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-070548.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-225506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-114211.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-072041.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-032147.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-165230.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-211351.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-011223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-063744.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-071634.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-210701.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-224302.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-045754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-150024.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010955.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-235713.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-120254.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155745.b1.nc\n", - "SUCCESS " - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2023-05-22 16:54:00,630 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:54:19,325 - distributed.nanny - WARNING - Restarting worker\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:54:37,473 - distributed.nanny - WARNING - Restarting worker\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - ":283: DeprecationWarning: the load_module() method is deprecated and slated for removal in Python 3.12; use exec_module() instead\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "2023-05-22 16:56:15,145 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.05 GiB -- Worker memory limit: 15.72 GiB\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5A.c line 298 in H5Acreate2(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #001: H5VLcallback.c line 988 in H5VL_attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 955 in H5VL__attr_create(): attribute create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_attr.c line 75 in H5VL__native_attr_create(): unable to create attribute\n", - " major: Attribute\n", - " minor: Unable to initialize object\n", - " #004: H5Aint.c line 268 in H5A__create(): unable to create attribute in object header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #005: H5Oattribute.c line 317 in H5O__attr_create(): unable to create new attribute in header\n", - " major: Attribute\n", - " minor: Unable to insert object\n", - " #006: H5Omessage.c line 205 in H5O__msg_append_real(): unable to create new message\n", - " major: Object header\n", - " minor: No space available for allocation\n", - " #007: H5Omessage.c line 1847 in H5O__msg_alloc(): unable to allocate space for message\n", - " major: Object header\n", - " minor: Unable to initialize object\n", - " #008: H5Oalloc.c line 1313 in H5O__alloc(): can't extend existing chunk\n", - " major: Object header\n", - " minor: Can't extend heap's space\n", - " #009: H5Oalloc.c line 576 in H5O__alloc_extend_chunk(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #010: H5Ochunk.c line 191 in H5O__chunk_protect(): unable to load object header chunk\n", - " major: Object header\n", - " minor: Unable to protect metadata\n", - " #011: H5AC.c line 1426 in H5AC_protect(): H5C_protect() failed\n", - " major: Object cache\n", - " minor: Unable to protect metadata\n", - " #012: H5C.c line 2370 in H5C_protect(): can't load entry\n", - " major: Object cache\n", - " minor: Unable to load metadata into cache\n", - " #013: H5C.c line 7315 in H5C__load_entry(): incorrect metadata checksum after all read attempts\n", - " major: Object cache\n", - " minor: Read failed\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 2:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "2023-05-22 16:57:36,176 - distributed.worker_memory - WARNING - Unmanaged memory use is high. This may indicate a memory leak or the memory may not be released to the OS; see https://distributed.dask.org/en/latest/worker-memory.html#memory-not-released-back-to-the-os for more information. -- Unmanaged memory: 11.19 GiB -- Worker memory limit: 15.72 GiB\n" - ] - }, - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144936.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-131354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-195344.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-002035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-114309.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-180705.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211227-215110.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-135529.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-013054.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-151259.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-101101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-095003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-073551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-153357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-063256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-121650.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-185808.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-055645.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-230008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-055100.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023523.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-064119.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125313.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-143648.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064407.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-191338.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-014754.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-204301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-231533.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-120308.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-131015.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-221532.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-205520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-091815.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-181519.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-113523.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-005540.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-075908.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-061127.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-003012.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-102734.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-155256.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-074003.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-170202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-183417.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-084709.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-133509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-155334.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-004857.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-152257.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-100527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-183553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-194711.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-222223.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-024517.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-073445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-071345.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-181215.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-235613.b1.nc\n" - ] - }, - { - "name": "stderr", - "output_type": "stream", - "text": [ - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 4:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 3:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 1:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - "HDF5-DIAG: Error detected in HDF5 (1.12.2) thread 5:\n", - " #000: H5F.c line 532 in H5Fcreate(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #001: H5VLcallback.c line 3282 in H5VL_file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #002: H5VLcallback.c line 3248 in H5VL__file_create(): file create failed\n", - " major: Virtual Object Layer\n", - " minor: Unable to create file\n", - " #003: H5VLnative_file.c line 63 in H5VL__native_file_create(): unable to create file\n", - " major: File accessibility\n", - " minor: Unable to open file\n", - " #004: H5Fint.c line 1898 in H5F_open(): unable to lock the file\n", - " major: File accessibility\n", - " minor: Unable to lock file\n", - " #005: H5FD.c line 1625 in H5FD_lock(): driver lock request failed\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n", - " #006: H5FDsec2.c line 1002 in H5FD__sec2_lock(): unable to lock file, errno = 11, error message = 'Resource temporarily unavailable'\n", - " major: Virtual File Layer\n", - " minor: Unable to lock file\n" - ] - }, + " \n", + "" + ], + "text/plain": [ + "" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from dask.distributed import Client, LocalCluster\n", + "\n", + "cluster = LocalCluster()\n", + "\n", + "client = Client(cluster)\n", + "client" + ] + }, + { + "cell_type": "markdown", + "id": "9a0cee88", + "metadata": {}, + "source": [ + "## Glue the Files" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "17cca90d", + "metadata": {}, + "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "\n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-213203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-014557.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-201913.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-012231.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-030325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211226-043021.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-115914.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-175925.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000248.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-144337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-163240.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-171025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-214301.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-134744.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-063551.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-131306.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-082336.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-021540.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-122318.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-015401.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-170045.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-180145.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211213-013306.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-001506.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-195911.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-005233.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-111008.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-143249.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-224337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-005658.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211219-160902.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-045624.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-061624.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-131745.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-042707.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-224852.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-194130.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-194153.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-102203.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-061655.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-160325.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-202731.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-081623.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-015604.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-053413.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-060508.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-194123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192848.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-205653.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-230654.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-064819.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-094428.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-201750.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-222101.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-043413.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-151034.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-071218.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-190839.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-212337.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-143746.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-234907.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-101527.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-030205.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-055814.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-092346.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-083327.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-165235.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-194432.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-232651.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-064305.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-015449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-141716.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-131422.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-213739.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-224445.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-035509.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-105258.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-225831.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-190631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-050628.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-041155.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-081219.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-062609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-174122.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-144112.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-205006.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-103339.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-231914.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-010543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-202319.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-034035.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-003921.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-110323.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-135924.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-094543.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-063807.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-063132.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-021251.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103900.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-130547.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-145451.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-202202.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-000700.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-140553.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-001400.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-125724.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-023935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-123059.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-095016.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-092639.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211206-115737.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-103910.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-214840.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-190230.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-080722.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-104429.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-135630.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-224851.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-171239.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-080328.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-022703.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-111505.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-132306.b1.nc\n", - "SUCCESS \n", - "## You are using the Python ARM Radar Toolkit (Py-ART), an open source\n", - "## library for working with weather radar data. Py-ART is partly\n", - "## supported by the U.S. Department of Energy as part of the Atmospheric\n", - "## Radiation Measurement (ARM) Climate Research Facility, an Office of\n", - "## Science user facility.\n", - "##\n", - "## If you use this software to prepare a publication, please cite:\n", - "##\n", - "## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119\n", - "\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-194731.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-000326.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-193544.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-030448.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211209-083357.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-074426.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211229-145520.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-201926.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-192025.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-021304.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-134920.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-193315.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-071748.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-160056.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-232954.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-030156.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-203631.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-154631.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-231406.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211210-121803.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211212-131703.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-140704.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211214-230026.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211215-195351.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211216-051354.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211217-054447.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211220-024303.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-223732.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-115314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-072740.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-232930.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211205-144232.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-104614.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-163512.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-001935.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-091055.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211201-065355.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-103449.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-220536.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211203-030858.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211202-142117.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-002402.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-025913.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-040039.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211204-194139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-124912.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211208-230314.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211207-142539.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211218-210217.b1.nc\n", - "FAILURE /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-055014.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211221-193113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211222-153638.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211223-101123.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-084609.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211224-135010.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-164617.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211225-221139.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-071113.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-092433.b1.nc\n", - "SUCCESS /gpfs/wolf/atm124/proj-shared/gucxprecipradarS2.00/glue_files/202112_glued/xprecipradar_guc_volume_20211228-121514.b1.nc\n" + "CPU times: user 3.33 s, sys: 2.07 s, total: 5.39 s\n", + "Wall time: 4min 33s\n" ] } ], "source": [ "%%time\n", + "future = client.map(granule, subset)\n", "my_data = client.gather(future)" ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "e439c9f8-4e8d-44ac-b45e-4a550f0d2225", + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -15894,7 +598,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.12.2" + "version": "3.11.7" } }, "nbformat": 4, From ddccc9cecb74b8c61e102ee74fe0ddd23c120d55 Mon Sep 17 00:00:00 2001 From: jrobrien91 Date: Thu, 22 Feb 2024 17:34:49 -0500 Subject: [PATCH 4/4] ENH: Removing Python3.9 pin --- environment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/environment.yml b/environment.yml index fdfceaa..68d9084 100644 --- a/environment.yml +++ b/environment.yml @@ -4,7 +4,7 @@ channels: - defaults - pyviz dependencies: - - python=3.9 + - python - arm_pyart - matplotlib - hvplot