Skip to content

Instantly share code, notes, and snippets.

@stuartlynn
Created October 8, 2015 17:34
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save stuartlynn/a7868cf8ca02931a6408 to your computer and use it in GitHub Desktop.
Save stuartlynn/a7868cf8ca02931a6408 to your computer and use it in GitHub Desktop.
NEXRad to CartoDB data importer
Display the source blob
Display the rendered blob
Raw
{"nbformat_minor": 0, "cells": [{"execution_count": 1, "cell_type": "code", "source": "%matplotlib inline\n\nimport matplotlib.pyplot as plt\nimport numpy.ma as ma\nimport numpy as np\nimport pyart.graph\nimport tempfile\nimport pyart.io\nimport boto\nimport geopy\nimport math\nimport re\nimport csv\nfrom geopy.distance import VincentyDistance\n\nfrom subprocess import call\n", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 2, "cell_type": "code", "source": "# Generates a regular expression with which to grab the files we want from AWS\n\ndef generate_regex(year=False,month=False,day=False,station=False):\n y = str(year) if year else \"\\d*\"\n m = str(month) if month else \"\\d*\"\n d = str(day) if day else \"\\d*\"\n s = station if station else \".*\"\n return y+\"\\/\"+m+\"\\/\"+d+\"\\/\"+s+\".*\\.gz\"\n\n# Creates a short cut to limit the numebr of keys we need to search to get the files we want \ndef generate_short_cut_path(year,month=False,day=False,station=False):\n shortcutTemplate = str(year)\n if month:\n shortcutTemplate += \"/\" + str(month)\n if day:\n shortcutTemplate += \"/\" + str(day)\n if station:\n shortcutTemplate += \"/\" + station\n return shortcutTemplate\n\n# Grab a list of files we want from the NEXRad data set\ndef grab_list_of_files(year,month=False,day=False,station=False):\n s3conn = boto.connect_s3()\n bucket = s3conn.get_bucket('noaa-nexrad-level2')\n regex = generate_regex(year,month,day,station)\n shortcut = generate_short_cut_path(year,month,day,station)\n print shortcut\n print regex\n keys = [key.key for key in bucket.list(shortcut) if re.match(regex,key.key) ]\n\n return keys\n ", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 3, "cell_type": "code", "source": "# Use Boto to grab the file from s3 and load it in to pyart\ndef grab_and_process_radar(key):\n s3conn = boto.connect_s3()\n bucket = s3conn.get_bucket('noaa-nexrad-level2')\n s3key = bucket.get_key(key)\n localfile = tempfile.NamedTemporaryFile()\n s3key.get_contents_to_filename(\"data.gz\")\n call([\"gunzip\", \"data.gz\"])\n radar = pyart.io.read_nexrad_archive(\"data\")\n return radar", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 5, "cell_type": "code", "source": "def filter_data(radar):\n refl_grid = radar.get_field(0, 'reflectivity')\n rhohv_grid = radar.get_field(0, 'cross_correlation_ratio')\n zdr_grid = radar.get_field(0, 'differential_reflectivity')\n\n # apply rudimentary quality control\n reflow = np.less(refl_grid, 20)\n zdrhigh = np.greater(np.abs(zdr_grid), 2.3)\n rhohvlow = np.less(rhohv_grid, 0.95)\n notweather = np.logical_or(reflow, np.logical_or(zdrhigh, rhohvlow))\n\n qcrefl_grid = ma.masked_where(notweather, refl_grid)\n qced = radar.extract_sweeps([0])\n qced.add_field_like('reflectivity', 'reflectivityqc', qcrefl_grid)\n return qced", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 6, "cell_type": "code", "source": "def offset_by_meters(x,y,lat,lon):\n if x==y==0:\n return lat,lon\n dist = math.sqrt(x*x+y*y)\n bearing = math.atan2(y,x)\n\n origin = geopy.Point(lat, lon)\n destination = VincentyDistance(meters=dist).destination(origin, math.degrees(bearing))\n\n lat2, lon2 = destination.latitude, destination.longitude \n return lat2,lon2", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 7, "cell_type": "code", "source": "\ndef save_as_csv(filename,data,level, append, extent=300, points=100):\n\n grids = pyart.map.grid_from_radars(\n (data,),\n grid_shape=(11, points, points),\n grid_limits= ((0, 11000), (-extent*1000.0, extent*1000.0), (-extent*1000.0, extent*1000.0)),\n fields=['reflectivityqc'],\n refl_field='reflectivityqc',\n max_refl=100.)\n center = [grids.axes[\"lat\"][\"data\"][0], grids.axes[\"lon\"][\"data\"][0]]\n date = grids.axes['time'][\"units\"].replace( \"seconds since \",\"\")\n print date\n \n ref = grids.fields[\"reflectivityqc\"][\"data\"][level]\n \n x_dists = grids.axes[\"x_disp\"][\"data\"]\n y_dists = grids.axes[\"y_disp\"][\"data\"]\n \n data = np.array(grids.fields[\"reflectivityqc\"][\"data\"][level])\n \n if append:\n csvfile = open(filename, 'ab')\n else:\n csvfile = open(filename, 'wb')\n writer = csv.writer(csvfile, delimiter=',', quotechar='|', quoting=csv.QUOTE_MINIMAL)\n \n if not append:\n writer.writerow([\"lat\", \"lon\", \"value\",\"date\"])\n for (ix,iy), value in np.ndenumerate(data):\n if value != -9999.0:\n x = x_dists[ix]\n y = y_dists[iy]\n lat, lon = offset_by_meters(x,y,center[0],center[1])\n writer.writerow([lat,lon,value,date])\n return data\n ", "outputs": [], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": 8, "cell_type": "code", "source": "keys = grab_list_of_files(\"2015\", \"05\", \"15\", station=\"KVWX\")\nprint \"got \", len(keys)\nfor key in keys:\n print \"doing file \", key\n\n radar = grab_and_process_radar(key)\n print radar.get_field(0, 'cross_correlation_ratio') \n filtered_data = filter_data(radar)\n print filtered_data\n append = (key != keys[0])\n data = save_as_csv(\"result.csv\", filtered_data, 5 ,append)\n plt.imshow(data)\n call([\"rm\", \"data.gz\"])\n call([\"rm\", \"data\"])", "outputs": [{"output_type": "stream", "name": "stdout", "text": "2015/05/15/KVWX\n2015\\/05\\/15\\/KVWX.*\\.gz\ngot 288\ndoing file 2015/05/15/KVWX/KVWX20150515_000015_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- 0.3149999976158142 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [0.675000011920929 -- 0.67166668176651 ..., -- -- --]\n [0.625 -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bae9e50>\n2015-05-15T01:16:04Z\ndoing file 2015/05/15/KVWX/KVWX20150515_000511_V06.gz\n[[0.625 0.92166668176651 0.7183333039283752 ..., -- -- --]\n [0.8983333110809326 0.878333330154419 0.8550000190734863 ..., -- -- --]\n [-- 0.7583333253860474 0.9083333611488342 ..., -- -- --]\n ..., \n [0.8816666603088379 0.824999988079071 0.925000011920929 ..., -- -- --]\n [0.7649999856948853 0.574999988079071 0.875 ..., -- -- --]\n [0.6016666889190674 0.925000011920929 0.8916666507720947 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bae9fd0>\n2015-05-15T00:05:11Z\ndoing file 2015/05/15/KVWX/KVWX20150515_001007_V06.gz\n[[0.6616666913032532 0.9483333230018616 0.2750000059604645 ..., -- -- --]\n [0.5849999785423279 0.2983333468437195 0.33500000834465027 ..., -- -- --]\n [0.778333306312561 0.5249999761581421 0.8916666507720947 ..., -- -- --]\n ..., \n [0.8849999904632568 0.9616666436195374 0.9950000047683716 ..., -- -- --]\n [0.9116666913032532 0.9649999737739563 0.9916666746139526 ..., -- -- --]\n [0.8450000286102295 0.9316666722297668 0.778333306312561 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bae9e10>\n2015-05-15T00:10:07Z\ndoing file 2015/05/15/KVWX/KVWX20150515_001504_V06.gz\n[[0.9383333325386047 0.9116666913032532 0.824999988079071 ..., -- -- --]\n [0.9316666722297668 0.9350000023841858 0.9416666626930237 ..., -- -- --]\n [0.9649999737739563 0.8616666793823242 0.9516666531562805 ..., -- -- --]\n ..., \n [0.9916666746139526 0.9816666841506958 0.8916666507720947 ..., -- -- --]\n [0.5249999761581421 0.9816666841506958 0.7183333039283752 ..., -- -- --]\n [0.9516666531562805 0.2849999964237213 0.9750000238418579 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x118623410>\n2015-05-15T00:15:04Z\ndoing file 2015/05/15/KVWX/KVWX20150515_002000_V06.gz\n[[-- -- 0.7416666746139526 ..., -- -- --]\n [-- -- 0.9883333444595337 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.6016666889190674 0.2083333283662796 ..., -- -- --]\n [0.5716666579246521 -- 0.398333340883255 ..., -- -- --]\n [-- -- 0.34833332896232605 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x118607b90>\n2015-05-15T00:20:00Z\ndoing file 2015/05/15/KVWX/KVWX20150515_002458_V06.gz\n[[-- -- 0.6683333516120911 ..., -- -- --]\n [-- -- 0.8516666889190674 ..., -- -- --]\n [-- -- 0.2083333283662796 ..., -- -- --]\n ..., \n [0.7749999761581421 0.82833331823349 0.621666669845581 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- 0.8016666769981384 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bc4af10>\n2015-05-15T00:24:58Z\ndoing file 2015/05/15/KVWX/KVWX20150515_002954_V06.gz\n[[0.9950000047683716 0.2083333283662796 0.5716666579246521 ..., -- -- --]\n [0.9850000143051147 0.6483333110809326 0.7183333039283752 ..., -- -- --]\n [0.5216666460037231 0.871666669845581 0.4050000011920929 ..., -- -- --]\n ..., \n [0.7516666650772095 0.41499999165534973 0.9649999737739563 ..., -- -- --]\n [0.878333330154419 0.3050000071525574 0.8816666603088379 ..., -- -- --]\n [0.6916666626930237 0.5216666460037231 0.7316666841506958 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x103b98fd0>\n2015-05-15T00:29:54Z\ndoing file 2015/05/15/KVWX/KVWX20150515_003451_V06.gz\n[[0.7383333444595337 0.7749999761581421 0.8849999904632568 ..., -- -- --]\n [0.7683333158493042 0.6116666793823242 0.49166667461395264 ..., -- -- --]\n [0.6616666913032532 0.7383333444595337 0.7049999833106995 ..., -- -- --]\n ..., \n [0.7616666555404663 0.7883333563804626 0.9449999928474426 ..., -- -- --]\n [0.8016666769981384 0.7583333253860474 0.8116666674613953 ..., -- -- --]\n [0.6083333492279053 0.7683333158493042 0.8616666793823242 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182d2c90>\n2015-05-15T00:34:51Z\ndoing file 2015/05/15/KVWX/KVWX20150515_003948_V06.gz\n[[0.4816666543483734 0.6083333492279053 0.9350000023841858 ..., -- -- --]\n [-- -- 0.9449999928474426 ..., -- -- --]\n [0.5550000071525574 0.628333330154419 0.9116666913032532 ..., -- -- --]\n ..., \n [0.22166666388511658 0.2750000059604645 0.9783333539962769 ..., -- -- --]\n [0.878333330154419 0.8616666793823242 0.9416666626930237 ..., -- -- --]\n [0.9416666626930237 0.9516666531562805 0.8849999904632568 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182d2c10>\n2015-05-15T00:39:48Z\ndoing file 2015/05/15/KVWX/KVWX20150515_004444_V06.gz\n[[0.7583333253860474 0.48500001430511475 0.4883333444595337 ..., -- -- --]\n [0.9683333039283752 0.45500001311302185 0.6483333110809326 ..., -- -- --]\n [0.8849999904632568 0.7683333158493042 0.824999988079071 ..., -- -- --]\n ..., \n [0.9083333611488342 0.6516666412353516 0.4350000023841858 ..., -- -- --]\n [0.9616666436195374 0.8183333277702332 0.9083333611488342 ..., -- -- --]\n [0.9649999737739563 0.6449999809265137 0.22833333909511566 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182d2950>\n2015-05-15T00:44:44Z\ndoing file 2015/05/15/KVWX/KVWX20150515_004941_V06.gz\n[[0.7350000143051147 -- -- ..., -- -- --]\n [0.9916666746139526 0.49166667461395264 0.3816666603088379 ..., -- -- --]\n [0.38499999046325684 0.5916666388511658 0.38499999046325684 ..., -- -- --]\n ..., \n [0.8183333277702332 0.5083333253860474 0.621666669845581 ..., -- -- --]\n [0.6883333325386047 -- 0.48500001430511475 ..., -- -- --]\n [0.8116666674613953 -- 0.628333330154419 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bc76f90>\n2015-05-15T00:49:41Z\ndoing file 2015/05/15/KVWX/KVWX20150515_005437_V06.gz\n[[0.2083333283662796 0.3816666603088379 -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- 0.5483333468437195 0.2083333283662796 ..., -- -- --]\n ..., \n [-- 0.7350000143051147 0.4216666519641876 ..., -- -- --]\n [-- 0.4216666519641876 0.628333330154419 ..., -- -- --]\n [-- 0.3050000071525574 0.9083333611488342 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182fe390>\n2015-05-15T00:54:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_005933_V06.gz\n[[-- 0.6783333420753479 0.6183333396911621 ..., -- -- --]\n [-- 0.2083333283662796 0.2083333283662796 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- -- 0.7850000262260437 ..., -- -- --]\n [-- 0.9116666913032532 0.9616666436195374 ..., -- -- --]\n [-- 0.8183333277702332 0.9150000214576721 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182fe3d0>\n2015-05-15T00:59:33Z\ndoing file 2015/05/15/KVWX/KVWX20150515_010430_V06.gz\n[[0.8216666579246521 0.7383333444595337 0.6416666507720947 ..., -- -- --]\n [0.4650000035762787 0.528333306312561 0.6116666793823242 ..., -- -- --]\n [0.9116666913032532 0.8816666603088379 0.8583333492279053 ..., -- -- --]\n ..., \n [0.7049999833106995 0.7016666531562805 0.7083333134651184 ..., -- -- --]\n [0.7016666531562805 0.7316666841506958 0.7749999761581421 ..., -- -- --]\n [0.6650000214576721 0.721666693687439 0.778333306312561 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bc4a8d0>\n2015-05-15T01:04:30Z\ndoing file 2015/05/15/KVWX/KVWX20150515_010927_V06.gz\n[[0.9583333134651184 0.9683333039283752 0.9683333039283752 ..., -- -- --]\n [0.9916666746139526 0.9950000047683716 0.9950000047683716 ..., -- -- --]\n [0.9116666913032532 0.9583333134651184 0.9783333539962769 ..., -- -- --]\n ..., \n [0.41499999165534973 0.4516666531562805 0.5083333253860474 ..., -- -- --]\n [0.721666693687439 0.7649999856948853 0.8316666483879089 ..., -- -- --]\n [0.8316666483879089 0.8050000071525574 0.7549999952316284 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182ea550>\n2015-05-15T01:09:27Z\ndoing file 2015/05/15/KVWX/KVWX20150515_011423_V06.gz\n[[-- 0.8316666483879089 0.9083333611488342 ..., -- -- --]\n [0.7749999761581421 0.8116666674613953 0.878333330154419 ..., -- -- --]\n [0.8083333373069763 0.6616666913032532 0.2083333283662796 ..., -- -- --]\n ..., \n [0.9416666626930237 0.9283333420753479 0.8983333110809326 ..., -- -- --]\n [0.871666669845581 0.8483333587646484 0.8816666603088379 ..., -- -- --]\n [0.824999988079071 0.7450000047683716 0.6583333611488342 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182eadd0>\n2015-05-15T01:14:23Z\ndoing file 2015/05/15/KVWX/KVWX20150515_011920_V06.gz\n[[0.6883333325386047 0.6883333325386047 -- ..., -- -- --]\n [0.8983333110809326 0.9449999928474426 -- ..., -- -- --]\n [0.9283333420753479 0.2083333283662796 -- ..., -- -- --]\n ..., \n [0.8550000190734863 0.778333306312561 0.9116666913032532 ..., -- -- --]\n [0.9649999737739563 0.9283333420753479 0.5249999761581421 ..., -- -- --]\n [0.9683333039283752 0.9116666913032532 0.3816666603088379 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182feb50>\n2015-05-15T01:19:20Z\ndoing file 2015/05/15/KVWX/KVWX20150515_012416_V06.gz\n[[0.925000011920929 0.4716666638851166 0.4516666531562805 ..., -- -- --]\n [0.9883333444595337 0.9750000238418579 0.9750000238418579 ..., -- -- --]\n [0.9383333325386047 0.9950000047683716 0.9883333444595337 ..., -- -- --]\n ..., \n [0.8149999976158142 0.5450000166893005 0.6983333230018616 ..., -- -- --]\n [0.3316666781902313 -- -- ..., -- -- --]\n [0.4583333432674408 0.4716666638851166 0.4216666519641876 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182f2cd0>\n2015-05-15T01:24:16Z\ndoing file 2015/05/15/KVWX/KVWX20150515_012912_V06.gz\n[[0.3916666805744171 -- 0.398333340883255 ..., -- -- --]\n [-- -- 0.2083333283662796 ..., -- -- --]\n [-- -- 0.6616666913032532 ..., -- -- --]\n ..., \n [0.6949999928474426 -- 0.8149999976158142 ..., -- -- --]\n [0.7883333563804626 -- 0.7450000047683716 ..., -- -- --]\n [0.9483333230018616 -- 0.9449999928474426 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182f2650>\n2015-05-15T01:29:12Z\ndoing file 2015/05/15/KVWX/KVWX20150515_013408_V06.gz\n[[0.6850000023841858 0.7983333468437195 -- ..., -- -- --]\n [0.4283333420753479 -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.6816666722297668 0.7549999952316284 0.7916666865348816 ..., -- -- --]\n [0.8883333206176758 0.8949999809265137 0.7850000262260437 ..., -- -- --]\n [0.5450000166893005 0.3016666769981384 0.3083333373069763 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182fe510>\n2015-05-15T01:34:08Z\ndoing file 2015/05/15/KVWX/KVWX20150515_013904_V06.gz\n[[0.9750000238418579 0.971666693687439 0.9649999737739563 ..., -- -- --]\n [0.824999988079071 0.8983333110809326 0.8949999809265137 ..., -- -- --]\n [0.9383333325386047 0.8616666793823242 0.7950000166893005 ..., -- -- --]\n ..., \n [0.6416666507720947 0.6416666507720947 0.6416666507720947 ..., -- -- --]\n [0.5316666960716248 0.875 0.92166668176651 ..., -- -- --]\n [0.3283333480358124 0.5849999785423279 0.6816666722297668 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182f39d0>\n2015-05-15T01:39:04Z\ndoing file 2015/05/15/KVWX/KVWX20150515_014402_V06.gz\n[[0.8083333373069763 0.92166668176651 0.9683333039283752 ..., -- -- --]\n [0.7183333039283752 0.7450000047683716 0.9916666746139526 ..., -- -- --]\n [0.37166666984558105 0.9049999713897705 0.9916666746139526 ..., -- -- --]\n ..., \n [0.6183333396911621 0.7749999761581421 0.48500001430511475 ..., -- -- --]\n [0.9783333539962769 0.971666693687439 0.574999988079071 ..., -- -- --]\n [0.8416666388511658 0.9449999928474426 0.6583333611488342 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182f3e10>\n2015-05-15T01:44:02Z\ndoing file 2015/05/15/KVWX/KVWX20150515_014858_V06.gz\n[[0.8550000190734863 0.9883333444595337 0.9683333039283752 ..., -- -- --]\n [0.8883333206176758 0.9016666412353516 0.9850000143051147 ..., -- -- --]\n [0.6116666793823242 0.8849999904632568 0.8483333587646484 ..., -- -- --]\n ..., \n [0.7383333444595337 0.6916666626930237 0.9683333039283752 ..., -- -- --]\n [0.871666669845581 0.9783333539962769 0.9283333420753479 ..., -- -- --]\n [0.9649999737739563 0.6150000095367432 0.7850000262260437 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182f3fd0>\n2015-05-15T01:48:58Z\ndoing file 2015/05/15/KVWX/KVWX20150515_015355_V06.gz\n[[-- -- 0.3449999988079071 ..., -- -- --]\n [0.7583333253860474 0.7749999761581421 0.7850000262260437 ..., -- -- --]\n [0.47833332419395447 -- 0.5716666579246521 ..., -- -- --]\n ..., \n [-- 0.7250000238418579 0.9683333039283752 ..., -- -- --]\n [-- -- 0.5383333563804626 ..., -- -- --]\n [-- -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182f2e90>\n2015-05-15T01:53:55Z\ndoing file 2015/05/15/KVWX/KVWX20150515_015852_V06.gz\n[[0.9549999833106995 -- -- ..., -- -- --]\n [0.9383333325386047 -- -- ..., -- -- --]\n [0.9850000143051147 -- -- ..., -- -- --]\n ..., \n [0.8349999785423279 0.9283333420753479 0.871666669845581 ..., -- -- --]\n [0.9549999833106995 0.9449999928474426 0.9383333325386047 ..., -- -- --]\n [0.7850000262260437 0.778333306312561 0.7683333158493042 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d57ab10>\n2015-05-15T01:58:52Z\ndoing file 2015/05/15/KVWX/KVWX20150515_020348_V06.gz\n[[0.9683333039283752 0.9649999737739563 0.9883333444595337 ..., -- -- --]\n [0.8183333277702332 0.6549999713897705 0.9683333039283752 ..., -- -- --]\n [0.8849999904632568 0.9350000023841858 0.92166668176651 ..., -- -- --]\n ..., \n [0.7049999833106995 0.8650000095367432 0.9383333325386047 ..., -- -- --]\n [0.8883333206176758 0.971666693687439 0.9916666746139526 ..., -- -- --]\n [0.9316666722297668 0.5149999856948853 0.925000011920929 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d57a510>\n2015-05-15T02:03:48Z\ndoing file 2015/05/15/KVWX/KVWX20150515_020845_V06.gz\n[[0.7883333563804626 0.9083333611488342 0.375 ..., -- -- --]\n [0.7583333253860474 0.621666669845581 0.8116666674613953 ..., -- -- --]\n [0.40833333134651184 0.6616666913032532 0.6983333230018616 ..., -- -- --]\n ..., \n [0.9283333420753479 0.8016666769981384 0.971666693687439 ..., -- -- --]\n [0.8616666793823242 0.9150000214576721 0.8516666889190674 ..., -- -- --]\n [0.9549999833106995 0.7383333444595337 0.9750000238418579 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182f24d0>\n2015-05-15T02:08:45Z\ndoing file 2015/05/15/KVWX/KVWX20150515_021341_V06.gz\n[[0.9150000214576721 0.9183333516120911 0.8616666793823242 ..., -- -- --]\n [-- 0.7883333563804626 0.8083333373069763 ..., -- -- --]\n [-- 0.8916666507720947 0.8216666579246521 ..., -- -- --]\n ..., \n [0.6483333110809326 0.971666693687439 0.8316666483879089 ..., -- -- --]\n [0.9150000214576721 0.9683333039283752 0.82833331823349 ..., -- -- --]\n [0.9116666913032532 0.8416666388511658 0.7416666746139526 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d57a410>\n2015-05-15T02:13:41Z\ndoing file 2015/05/15/KVWX/KVWX20150515_021837_V06.gz\n[[0.2083333283662796 0.875 0.43833333253860474 ..., -- -- --]\n [0.6650000214576721 0.8949999809265137 0.778333306312561 ..., -- -- --]\n [0.47833332419395447 0.9549999833106995 0.92166668176651 ..., -- -- --]\n ..., \n [0.4216666519641876 0.7649999856948853 0.7016666531562805 ..., -- -- --]\n [0.2083333283662796 0.7683333158493042 0.7716666460037231 ..., -- -- --]\n [0.8650000095367432 0.7149999737739563 0.7383333444595337 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d09ac50>\n2015-05-15T02:18:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_022334_V06.gz\n[[0.9649999737739563 0.9583333134651184 0.875 ..., -- -- --]\n [0.7850000262260437 0.778333306312561 0.7716666460037231 ..., -- -- --]\n [0.6516666412353516 0.6416666507720947 0.625 ..., -- -- --]\n ..., \n [0.9449999928474426 0.9616666436195374 0.6816666722297668 ..., -- -- --]\n [0.778333306312561 0.7716666460037231 0.8016666769981384 ..., -- -- --]\n [0.7283333539962769 0.7749999761581421 0.8183333277702332 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d09af90>\n2015-05-15T02:23:34Z\ndoing file 2015/05/15/KVWX/KVWX20150515_022830_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- -- 0.7716666460037231 ..., -- -- --]\n [-- -- 0.9816666841506958 ..., -- -- --]\n [-- -- 0.4883333444595337 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d57a910>\n2015-05-15T02:28:30Z\ndoing file 2015/05/15/KVWX/KVWX20150515_023354_V06.gz\n[[0.7649999856948853 0.9016666412353516 -- ..., -- -- --]\n [0.971666693687439 0.9916666746139526 -- ..., -- -- --]\n [0.8050000071525574 0.9983333349227905 -- ..., -- -- --]\n ..., \n [0.721666693687439 0.7283333539962769 -- ..., -- -- --]\n [0.8983333110809326 0.8849999904632568 0.6850000023841858 ..., -- -- --]\n [0.8683333396911621 0.7816666960716248 0.721666693687439 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10cec3950>\n2015-05-15T02:33:54Z\ndoing file 2015/05/15/KVWX/KVWX20150515_023917_V06.gz\n[[0.8316666483879089 0.8316666483879089 0.8349999785423279 ..., -- -- --]\n [0.7516666650772095 0.7350000143051147 0.9683333039283752 ..., -- -- --]\n [0.9883333444595337 0.92166668176651 0.9683333039283752 ..., -- -- --]\n ..., \n [0.7749999761581421 0.8149999976158142 0.8450000286102295 ..., -- -- --]\n [0.925000011920929 0.8383333086967468 0.7716666460037231 ..., -- -- --]\n [0.621666669845581 0.625 0.6549999713897705 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10cec3f10>\n2015-05-15T02:39:17Z\ndoing file 2015/05/15/KVWX/KVWX20150515_024441_V06.gz\n[[0.6783333420753479 0.7350000143051147 -- ..., -- -- --]\n [-- 0.9783333539962769 0.7683333158493042 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.8516666889190674 0.824999988079071 0.8083333373069763 ..., -- -- --]\n [0.82833331823349 0.8416666388511658 0.8216666579246521 ..., -- -- --]\n [0.7816666960716248 0.8149999976158142 0.82833331823349 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d09aa10>\n2015-05-15T02:44:41Z\ndoing file 2015/05/15/KVWX/KVWX20150515_025004_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.9883333444595337 0.925000011920929 0.9683333039283752 ..., -- -- --]\n [0.9683333039283752 0.971666693687439 0.9649999737739563 ..., -- -- --]\n [0.8116666674613953 0.37833333015441895 0.7816666960716248 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10cec3750>\n2015-05-15T02:50:04Z\ndoing file 2015/05/15/KVWX/KVWX20150515_025526_V06.gz\n[[0.5450000166893005 0.9083333611488342 0.6316666603088379 ..., -- -- --]\n [0.7683333158493042 0.7083333134651184 0.6983333230018616 ..., -- -- --]\n [0.5950000286102295 0.7850000262260437 0.8650000095367432 ..., -- -- --]\n ..., \n [0.7850000262260437 0.7850000262260437 0.9750000238418579 ..., -- -- --]\n [0.8383333086967468 0.9449999928474426 0.9816666841506958 ..., -- -- --]\n [0.7116666436195374 0.621666669845581 0.8383333086967468 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10cec3dd0>\n2015-05-15T02:55:26Z\ndoing file 2015/05/15/KVWX/KVWX20150515_030049_V06.gz\n[[0.42500001192092896 0.5183333158493042 0.8683333396911621 ..., -- -- --]\n [0.675000011920929 0.9549999833106995 0.8483333587646484 ..., -- -- --]\n [0.8583333492279053 0.875 0.8483333587646484 ..., -- -- --]\n ..., \n [0.8050000071525574 0.8883333206176758 0.7616666555404663 ..., -- -- --]\n [0.8949999809265137 0.9683333039283752 0.7483333349227905 ..., -- -- --]\n [0.9383333325386047 0.67166668176651 0.9283333420753479 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d57aed0>\n2015-05-15T03:00:49Z\ndoing file 2015/05/15/KVWX/KVWX20150515_030612_V06.gz\n[[0.7883333563804626 0.9383333325386047 0.9350000023841858 ..., -- -- --]\n [0.871666669845581 0.9816666841506958 0.9449999928474426 ..., -- -- --]\n [0.9549999833106995 0.971666693687439 0.9783333539962769 ..., -- -- --]\n ..., \n [0.8483333587646484 0.8550000190734863 0.6316666603088379 ..., -- -- --]\n [0.9783333539962769 0.8483333587646484 0.3316666781902313 ..., -- -- --]\n [0.9016666412353516 0.8683333396911621 0.9449999928474426 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d5dfc90>\n2015-05-15T03:06:12Z\ndoing file 2015/05/15/KVWX/KVWX20150515_031135_V06.gz\n[[0.9750000238418579 0.8949999809265137 0.8616666793823242 ..., -- -- --]\n [0.3583333194255829 0.9750000238418579 0.9983333349227905 ..., -- -- --]\n [0.8483333587646484 0.5116666555404663 0.9983333349227905 ..., -- -- --]\n ..., \n [0.9350000023841858 0.8483333587646484 0.7149999737739563 ..., -- -- --]\n [0.9350000023841858 0.8483333587646484 0.7416666746139526 ..., -- -- --]\n [0.7083333134651184 0.9083333611488342 0.4950000047683716 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d5dfdd0>\n2015-05-15T03:11:35Z\ndoing file 2015/05/15/KVWX/KVWX20150515_031700_V06.gz\n[[0.8583333492279053 0.29499998688697815 0.8416666388511658 ..., -- -- --]\n [0.9583333134651184 0.9750000238418579 0.5183333158493042 ..., -- -- --]\n [0.9916666746139526 0.9116666913032532 0.8583333492279053 ..., -- -- --]\n ..., \n [0.5116666555404663 0.5950000286102295 0.8883333206176758 ..., -- -- --]\n [0.8450000286102295 0.3916666805744171 0.7049999833106995 ..., -- -- --]\n [0.2783333361148834 0.5149999856948853 0.6316666603088379 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10cec3d10>\n2015-05-15T03:17:00Z\ndoing file 2015/05/15/KVWX/KVWX20150515_032224_V06.gz\n[[0.9350000023841858 0.6949999928474426 0.6183333396911621 ..., -- -- --]\n [0.9883333444595337 0.9850000143051147 0.9783333539962769 ..., -- -- --]\n [0.9983333349227905 0.7683333158493042 0.28166666626930237 ..., -- -- --]\n ..., \n [0.9916666746139526 0.9750000238418579 0.9549999833106995 ..., -- -- --]\n [0.6783333420753479 0.7350000143051147 0.7983333468437195 ..., -- -- --]\n [0.2083333283662796 0.4883333444595337 0.7716666460037231 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d2ab0d0>\n2015-05-15T03:22:24Z\ndoing file 2015/05/15/KVWX/KVWX20150515_032746_V06.gz\n[[0.6816666722297668 0.8616666793823242 0.40833333134651184 ..., -- -- --]\n [0.2083333283662796 0.9616666436195374 0.7350000143051147 ..., -- -- --]\n [-- 0.9616666436195374 0.9516666531562805 ..., -- -- --]\n ..., \n [0.9783333539962769 0.92166668176651 0.9750000238418579 ..., -- -- --]\n [0.9549999833106995 0.8916666507720947 0.9583333134651184 ..., -- -- --]\n [0.9750000238418579 0.8149999976158142 0.8916666507720947 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d2aba10>\n2015-05-15T03:27:46Z\ndoing file 2015/05/15/KVWX/KVWX20150515_033242_V06.gz\n[[0.32499998807907104 0.9350000023841858 -- ..., -- -- --]\n [0.7983333468437195 0.8516666889190674 -- ..., -- -- --]\n [0.7883333563804626 0.9116666913032532 -- ..., -- -- --]\n ..., \n [0.46833333373069763 0.7649999856948853 0.7250000238418579 ..., -- -- --]\n [0.92166668176651 0.9283333420753479 0.9316666722297668 ..., -- -- --]\n [0.824999988079071 0.871666669845581 -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d2ab110>\n2015-05-15T03:32:42Z\ndoing file 2015/05/15/KVWX/KVWX20150515_033738_V06.gz\n[[0.8883333206176758 0.871666669845581 0.8349999785423279 ..., -- -- --]\n [0.9016666412353516 0.7183333039283752 0.8216666579246521 ..., -- -- --]\n [0.5583333373069763 0.37166666984558105 0.4350000023841858 ..., -- -- --]\n ..., \n [0.9583333134651184 0.6650000214576721 0.6816666722297668 ..., -- -- --]\n [0.9316666722297668 0.9916666746139526 0.7283333539962769 ..., -- -- --]\n [0.9049999713897705 0.5716666579246521 0.7816666960716248 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x1182ead90>\n2015-05-15T03:37:38Z\ndoing file 2015/05/15/KVWX/KVWX20150515_034235_V06.gz\n[[0.8550000190734863 0.8550000190734863 0.9083333611488342 ..., -- -- --]\n [0.82833331823349 0.8183333277702332 0.778333306312561 ..., -- -- --]\n [0.9150000214576721 0.8916666507720947 0.7316666841506958 ..., -- -- --]\n ..., \n [0.9483333230018616 0.925000011920929 0.878333330154419 ..., -- -- --]\n [0.2516666650772095 0.8983333110809326 0.9916666746139526 ..., -- -- --]\n [0.6516666412353516 0.9816666841506958 0.9816666841506958 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10cce9f90>\n2015-05-15T03:42:35Z\ndoing file 2015/05/15/KVWX/KVWX20150515_034732_V06.gz\n[[0.7583333253860474 0.7816666960716248 0.824999988079071 ..., -- -- --]\n [0.7883333563804626 0.8316666483879089 0.82833331823349 ..., -- -- --]\n [0.925000011920929 0.8849999904632568 0.7649999856948853 ..., -- -- --]\n ..., \n [0.7183333039283752 0.875 0.9549999833106995 ..., -- -- --]\n [0.8949999809265137 0.9850000143051147 0.46166667342185974 ..., -- -- --]\n [0.7283333539962769 0.5649999976158142 0.9016666412353516 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10cce9ad0>\n2015-05-15T03:47:32Z\ndoing file 2015/05/15/KVWX/KVWX20150515_035228_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.5216666460037231 0.2750000059604645 ..., -- -- --]\n [0.4416666626930237 -- -- ..., -- -- --]\n [0.5183333158493042 0.5716666579246521 0.625 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d2ab890>\n2015-05-15T03:52:28Z\ndoing file 2015/05/15/KVWX/KVWX20150515_035726_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.7183333039283752 0.9183333516120911 0.9150000214576721 ..., -- -- --]\n [0.8383333086967468 0.8416666388511658 0.9049999713897705 ..., -- -- --]\n [0.9883333444595337 0.9883333444595337 0.9883333444595337 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c46be50>\n2015-05-15T03:57:26Z\ndoing file 2015/05/15/KVWX/KVWX20150515_040223_V06.gz\n[[0.8983333110809326 0.23499999940395355 0.6449999809265137 ..., -- -- --]\n [0.6983333230018616 0.92166668176651 0.351666659116745 ..., -- -- --]\n [0.7916666865348816 0.92166668176651 0.7749999761581421 ..., -- -- --]\n ..., \n [0.875 0.8849999904632568 0.9049999713897705 ..., -- -- --]\n [0.2616666555404663 0.5849999785423279 0.7516666650772095 ..., -- -- --]\n [0.8550000190734863 0.8849999904632568 0.9616666436195374 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c46bd10>\n2015-05-15T04:02:23Z\ndoing file 2015/05/15/KVWX/KVWX20150515_040720_V06.gz\n[[0.778333306312561 -- 0.7683333158493042 ..., -- -- --]\n [0.8650000095367432 -- 0.8516666889190674 ..., -- -- --]\n [0.6583333611488342 -- 0.7016666531562805 ..., -- -- --]\n ..., \n [0.8450000286102295 0.878333330154419 0.9750000238418579 ..., -- -- --]\n [0.8816666603088379 0.9183333516120911 0.9449999928474426 ..., -- -- --]\n [0.7916666865348816 0.8016666769981384 0.8316666483879089 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d2ab710>\n2015-05-15T04:07:20Z\ndoing file 2015/05/15/KVWX/KVWX20150515_041216_V06.gz\n[[0.9283333420753479 0.9449999928474426 0.878333330154419 ..., -- -- --]\n [0.9283333420753479 0.878333330154419 0.9516666531562805 ..., -- -- --]\n [0.9383333325386047 0.8050000071525574 0.6183333396911621 ..., -- -- --]\n ..., \n [0.9483333230018616 0.9516666531562805 0.9916666746139526 ..., -- -- --]\n [0.9616666436195374 0.9483333230018616 0.8650000095367432 ..., -- -- --]\n [0.9950000047683716 0.9383333325386047 0.5983333587646484 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0c3b50>\n2015-05-15T04:12:16Z\ndoing file 2015/05/15/KVWX/KVWX20150515_041712_V06.gz\n[[0.9116666913032532 0.9183333516120911 0.92166668176651 ..., -- -- --]\n [0.6683333516120911 0.6816666722297668 0.6916666626930237 ..., -- -- --]\n [0.7083333134651184 0.8916666507720947 0.6916666626930237 ..., -- -- --]\n ..., \n [0.7149999737739563 0.7983333468437195 0.8316666483879089 ..., -- -- --]\n [0.7583333253860474 0.778333306312561 0.7850000262260437 ..., -- -- --]\n [0.5083333253860474 0.5183333158493042 0.5216666460037231 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0c3f50>\n2015-05-15T04:17:12Z\ndoing file 2015/05/15/KVWX/KVWX20150515_042209_V06.gz\n[[0.8883333206176758 0.9049999713897705 0.675000011920929 ..., -- -- --]\n [0.9449999928474426 0.9516666531562805 0.9850000143051147 ..., -- -- --]\n [0.9116666913032532 0.9283333420753479 0.9983333349227905 ..., -- -- --]\n ..., \n [0.7850000262260437 0.8516666889190674 0.9449999928474426 ..., -- -- --]\n [0.9316666722297668 0.9449999928474426 0.6916666626930237 ..., -- -- --]\n [0.7649999856948853 0.7816666960716248 0.22499999403953552 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0c3410>\n2015-05-15T04:22:09Z\ndoing file 2015/05/15/KVWX/KVWX20150515_042705_V06.gz\n[[-- 0.7850000262260437 0.9983333349227905 ..., -- -- --]\n [-- 0.9916666746139526 0.9983333349227905 ..., -- -- --]\n [-- 0.9916666746139526 0.9850000143051147 ..., -- -- --]\n ..., \n [-- 0.7383333444595337 0.5049999952316284 ..., -- -- --]\n [-- 0.9016666412353516 0.824999988079071 ..., -- -- --]\n [-- 0.9883333444595337 0.9549999833106995 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c46bc50>\n2015-05-15T04:27:05Z\ndoing file 2015/05/15/KVWX/KVWX20150515_043201_V06.gz\n[[-- 0.4516666531562805 0.9683333039283752 ..., -- -- --]\n [-- 0.8083333373069763 0.6083333492279053 ..., -- -- --]\n [-- 0.6150000095367432 0.6549999713897705 ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- 0.7950000166893005 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0bcc90>\n2015-05-15T04:32:01Z\ndoing file 2015/05/15/KVWX/KVWX20150515_043910_V06.gz\n[[0.8849999904632568 0.824999988079071 0.8183333277702332 ..., -- -- --]\n [0.9016666412353516 0.8916666507720947 0.8849999904632568 ..., -- -- --]\n [0.7416666746139526 0.6650000214576721 0.871666669845581 ..., -- -- --]\n ..., \n [0.8149999976158142 0.8183333277702332 0.875 ..., -- -- --]\n [0.628333330154419 0.7483333349227905 0.9150000214576721 ..., -- -- --]\n [0.8983333110809326 0.7950000166893005 0.6816666722297668 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0bcf90>\n2015-05-15T04:39:10Z\ndoing file 2015/05/15/KVWX/KVWX20150515_044406_V06.gz\n[[0.9449999928474426 0.9916666746139526 0.6516666412353516 ..., -- -- --]\n [0.9616666436195374 0.9850000143051147 0.9850000143051147 ..., -- -- --]\n [0.3683333396911621 0.9916666746139526 0.7383333444595337 ..., -- -- --]\n ..., \n [0.8516666889190674 0.9483333230018616 0.32499998807907104 ..., -- -- --]\n [0.7683333158493042 0.8916666507720947 0.9383333325386047 ..., -- -- --]\n [0.878333330154419 0.875 0.871666669845581 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c46bd50>\n2015-05-15T04:44:06Z\ndoing file 2015/05/15/KVWX/KVWX20150515_044903_V06.gz\n[[0.3583333194255829 0.6816666722297668 -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.8916666507720947 0.6850000023841858 ..., -- -- --]\n [-- 0.4283333420753479 0.6549999713897705 ..., -- -- --]\n [-- 0.7283333539962769 0.6650000214576721 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2c3990>\n2015-05-15T04:49:03Z\ndoing file 2015/05/15/KVWX/KVWX20150515_045400_V06.gz\n[[0.6383333206176758 0.48500001430511475 0.4116666615009308 ..., -- -- --]\n [0.21166667342185974 0.4449999928474426 0.5516666769981384 ..., -- -- --]\n [0.2083333283662796 0.2083333283662796 0.4350000023841858 ..., -- -- --]\n ..., \n [-- 0.5383333563804626 0.7483333349227905 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2c3dd0>\n2015-05-15T04:54:00Z\ndoing file 2015/05/15/KVWX/KVWX20150515_045857_V06.gz\n[[0.8949999809265137 0.8816666603088379 0.8816666603088379 ..., -- -- --]\n [0.6816666722297668 0.7116666436195374 0.7416666746139526 ..., -- -- --]\n [0.9850000143051147 0.9549999833106995 0.9283333420753479 ..., -- -- --]\n ..., \n [0.8883333206176758 0.8650000095367432 0.8450000286102295 ..., -- -- --]\n [0.6683333516120911 0.6949999928474426 0.7516666650772095 ..., -- -- --]\n [0.9916666746139526 0.824999988079071 0.9183333516120911 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10cce92d0>\n2015-05-15T04:58:57Z\ndoing file 2015/05/15/KVWX/KVWX20150515_050353_V06.gz\n[[0.8349999785423279 0.7950000166893005 0.7749999761581421 ..., -- -- --]\n [0.9383333325386047 0.9683333039283752 0.9783333539962769 ..., -- -- --]\n [0.6150000095367432 0.7749999761581421 0.8616666793823242 ..., -- -- --]\n ..., \n [0.9049999713897705 0.9016666412353516 0.8983333110809326 ..., -- -- --]\n [0.5149999856948853 0.625 0.7516666650772095 ..., -- -- --]\n [0.9483333230018616 0.9483333230018616 0.9449999928474426 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2c3bd0>\n2015-05-15T05:03:53Z\ndoing file 2015/05/15/KVWX/KVWX20150515_050849_V06.gz\n[[0.9750000238418579 0.9616666436195374 0.9383333325386047 ..., -- -- --]\n [0.925000011920929 0.9283333420753479 0.9516666531562805 ..., -- -- --]\n [0.9483333230018616 0.971666693687439 0.9816666841506958 ..., -- -- --]\n ..., \n [0.6683333516120911 0.7883333563804626 0.8616666793823242 ..., -- -- --]\n [0.9449999928474426 0.9283333420753479 0.9016666412353516 ..., -- -- --]\n [0.9816666841506958 0.9816666841506958 0.9783333539962769 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d0ad0>\n2015-05-15T05:08:49Z\ndoing file 2015/05/15/KVWX/KVWX20150515_051413_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- 0.4883333444595337 0.3583333194255829 ..., -- -- --]\n ..., \n [0.398333340883255 -- -- ..., -- -- --]\n [-- -- 0.4183333218097687 ..., -- -- --]\n [-- -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d0990>\n2015-05-15T05:14:13Z\ndoing file 2015/05/15/KVWX/KVWX20150515_051935_V06.gz\n[[-- 0.8550000190734863 0.2083333283662796 ..., -- -- --]\n [-- 0.8149999976158142 0.5916666388511658 ..., -- -- --]\n [0.528333306312561 0.9616666436195374 0.34166666865348816 ..., -- -- --]\n ..., \n [-- 0.9950000047683716 0.9950000047683716 ..., -- -- --]\n [-- 0.9983333349227905 0.9883333444595337 ..., -- -- --]\n [-- 0.7716666460037231 0.7916666865348816 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2c3350>\n2015-05-15T05:19:35Z\ndoing file 2015/05/15/KVWX/KVWX20150515_052432_V06.gz\n[[0.9383333325386047 0.9383333325386047 0.9483333230018616 ..., -- -- --]\n [0.9383333325386047 0.9283333420753479 0.9283333420753479 ..., -- -- --]\n [0.5350000262260437 0.7083333134651184 0.82833331823349 ..., -- -- --]\n ..., \n [0.6083333492279053 0.7016666531562805 0.7383333444595337 ..., -- -- --]\n [0.5483333468437195 0.5950000286102295 0.675000011920929 ..., -- -- --]\n [0.9616666436195374 0.4216666519641876 0.2083333283662796 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d0390>\n2015-05-15T05:24:32Z\ndoing file 2015/05/15/KVWX/KVWX20150515_052929_V06.gz\n[[0.9850000143051147 0.7450000047683716 0.5016666650772095 ..., -- -- --]\n [0.8683333396911621 0.875 0.7116666436195374 ..., -- -- --]\n [0.8616666793823242 0.8016666769981384 0.9750000238418579 ..., -- -- --]\n ..., \n [0.625 0.7083333134651184 0.5116666555404663 ..., -- -- --]\n [0.7616666555404663 -- 0.5416666865348816 ..., -- -- --]\n [0.7149999737739563 0.5249999761581421 0.7583333253860474 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d2c10>\n2015-05-15T05:29:29Z\ndoing file 2015/05/15/KVWX/KVWX20150515_053425_V06.gz\n[[0.7983333468437195 0.9983333349227905 0.9816666841506958 ..., -- -- --]\n [0.9016666412353516 0.9983333349227905 0.875 ..., -- -- --]\n [0.9616666436195374 0.9916666746139526 0.8949999809265137 ..., -- -- --]\n ..., \n [0.8683333396911621 0.9883333444595337 0.7683333158493042 ..., -- -- --]\n [0.8883333206176758 0.8883333206176758 0.8583333492279053 ..., -- -- --]\n [0.9516666531562805 0.7549999952316284 0.8983333110809326 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d2a10>\n2015-05-15T05:34:25Z\ndoing file 2015/05/15/KVWX/KVWX20150515_053923_V06.gz\n[[-- -- 0.4716666638851166 ..., -- -- --]\n [-- -- 0.7583333253860474 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.9916666746139526 0.9950000047683716 ..., -- -- --]\n [-- 0.9583333134651184 0.9750000238418579 ..., -- -- --]\n [-- 0.9549999833106995 0.9616666436195374 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d0e90>\n2015-05-15T05:39:23Z\ndoing file 2015/05/15/KVWX/KVWX20150515_054419_V06.gz\n[[0.7450000047683716 0.7416666746139526 0.7416666746139526 ..., -- -- --]\n [0.5683333277702332 0.4816666543483734 0.4950000047683716 ..., -- -- --]\n [-- 0.9783333539962769 0.7483333349227905 ..., -- -- --]\n ..., \n [0.9016666412353516 0.9316666722297668 0.9649999737739563 ..., -- -- --]\n [0.9549999833106995 0.9283333420753479 0.8616666793823242 ..., -- -- --]\n [0.40166667103767395 0.46833333373069763 0.5583333373069763 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2e3910>\n2015-05-15T05:44:19Z\ndoing file 2015/05/15/KVWX/KVWX20150515_054915_V06.gz\n[[0.7950000166893005 0.6083333492279053 0.9649999737739563 ..., -- -- --]\n [0.621666669845581 0.6083333492279053 0.5116666555404663 ..., -- -- --]\n [0.8383333086967468 0.5849999785423279 0.67166668176651 ..., -- -- --]\n ..., \n [0.9950000047683716 0.875 0.7950000166893005 ..., -- -- --]\n [0.9983333349227905 0.5149999856948853 0.7083333134651184 ..., -- -- --]\n [0.9983333349227905 0.7850000262260437 0.7716666460037231 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2e3d50>\n2015-05-15T05:49:15Z\ndoing file 2015/05/15/KVWX/KVWX20150515_055412_V06.gz\n[[0.971666693687439 0.9683333039283752 0.9649999737739563 ..., -- -- --]\n [0.7383333444595337 0.7583333253860474 0.778333306312561 ..., -- -- --]\n [0.778333306312561 0.8483333587646484 0.878333330154419 ..., -- -- --]\n ..., \n [0.9350000023841858 0.9449999928474426 0.9616666436195374 ..., -- -- --]\n [0.9350000023841858 0.9516666531562805 0.9916666746139526 ..., -- -- --]\n [0.3216666579246521 0.8916666507720947 0.8849999904632568 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2e3750>\n2015-05-15T05:54:12Z\ndoing file 2015/05/15/KVWX/KVWX20150515_055909_V06.gz\n[[0.6783333420753479 0.9683333039283752 0.971666693687439 ..., -- -- --]\n [0.8983333110809326 0.9549999833106995 0.9583333134651184 ..., -- -- --]\n [0.9549999833106995 0.8416666388511658 0.8349999785423279 ..., -- -- --]\n ..., \n [0.8183333277702332 0.92166668176651 0.9950000047683716 ..., -- -- --]\n [0.9750000238418579 0.9750000238418579 0.9750000238418579 ..., -- -- --]\n [0.9616666436195374 0.9549999833106995 0.9616666436195374 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d2f90>\n2015-05-15T05:59:09Z\ndoing file 2015/05/15/KVWX/KVWX20150515_060406_V06.gz\n[[0.6383333206176758 0.925000011920929 0.8616666793823242 ..., -- -- --]\n [0.5550000071525574 0.8483333587646484 0.43166667222976685 ..., -- -- --]\n [0.2083333283662796 0.2083333283662796 -- ..., -- -- --]\n ..., \n [0.4516666531562805 0.7183333039283752 0.7116666436195374 ..., -- -- --]\n [0.4116666615009308 0.43166667222976685 0.6483333110809326 ..., -- -- --]\n [0.7583333253860474 0.7683333158493042 0.7816666960716248 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2f0a50>\n2015-05-15T06:04:06Z\ndoing file 2015/05/15/KVWX/KVWX20150515_060902_V06.gz\n[[0.9516666531562805 0.8849999904632568 0.8349999785423279 ..., -- -- --]\n [0.5316666960716248 0.925000011920929 0.9283333420753479 ..., -- -- --]\n [0.8450000286102295 0.721666693687439 0.9683333039283752 ..., -- -- --]\n ..., \n [0.9316666722297668 0.9283333420753479 0.92166668176651 ..., -- -- --]\n [0.7116666436195374 0.6349999904632568 0.9183333516120911 ..., -- -- --]\n [0.9816666841506958 0.9049999713897705 0.9150000214576721 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2f0890>\n2015-05-15T06:09:02Z\ndoing file 2015/05/15/KVWX/KVWX20150515_061358_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [0.4983333349227905 -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d2990>\n2015-05-15T06:13:58Z\ndoing file 2015/05/15/KVWX/KVWX20150515_061855_V06.gz\n[[0.9783333539962769 0.9750000238418579 -- ..., -- -- --]\n [0.9283333420753479 0.92166668176651 -- ..., -- -- --]\n [0.8183333277702332 0.7950000166893005 -- ..., -- -- --]\n ..., \n [0.92166668176651 0.8683333396911621 0.8349999785423279 ..., -- -- --]\n [0.7749999761581421 0.7883333563804626 0.8149999976158142 ..., -- -- --]\n [0.8216666579246521 0.8149999976158142 0.8116666674613953 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2f0d90>\n2015-05-15T06:18:55Z\ndoing file 2015/05/15/KVWX/KVWX20150515_062351_V06.gz\n[[0.6349999904632568 0.22499999403953552 0.2083333283662796 ..., -- -- --]\n [0.5950000286102295 0.7983333468437195 0.721666693687439 ..., -- -- --]\n [0.9683333039283752 0.7816666960716248 0.6816666722297668 ..., -- -- --]\n ..., \n [0.9883333444595337 0.9983333349227905 0.7850000262260437 ..., -- -- --]\n [0.9683333039283752 0.9783333539962769 0.8650000095367432 ..., -- -- --]\n [0.7149999737739563 0.721666693687439 0.6949999928474426 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2f7b90>\n2015-05-15T06:23:51Z\ndoing file 2015/05/15/KVWX/KVWX20150515_062847_V06.gz\n[[0.4283333420753479 0.6916666626930237 0.7316666841506958 ..., -- -- --]\n [0.9416666626930237 0.675000011920929 0.9283333420753479 ..., -- -- --]\n [0.9883333444595337 0.8416666388511658 -- ..., -- -- --]\n ..., \n [0.9883333444595337 0.7583333253860474 0.878333330154419 ..., -- -- --]\n [0.9449999928474426 0.9616666436195374 0.8550000190734863 ..., -- -- --]\n [0.7483333349227905 0.6016666889190674 0.5916666388511658 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2f7e90>\n2015-05-15T06:28:47Z\ndoing file 2015/05/15/KVWX/KVWX20150515_063344_V06.gz\n[[0.9383333325386047 0.9750000238418579 0.9783333539962769 ..., -- -- --]\n [0.6116666793823242 0.8316666483879089 0.8316666483879089 ..., -- -- --]\n [0.57833331823349 0.9916666746139526 0.4583333432674408 ..., -- -- --]\n ..., \n [0.8316666483879089 0.8583333492279053 0.875 ..., -- -- --]\n [0.9416666626930237 0.9483333230018616 0.9516666531562805 ..., -- -- --]\n [0.9750000238418579 0.971666693687439 0.9683333039283752 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2f0e90>\n2015-05-15T06:33:44Z\ndoing file 2015/05/15/KVWX/KVWX20150515_063840_V06.gz\n[[0.9083333611488342 0.2916666567325592 0.2083333283662796 ..., -- -- --]\n [0.8416666388511658 0.48500001430511475 0.4283333420753479 ..., -- -- --]\n [0.878333330154419 0.6616666913032532 0.2083333283662796 ..., -- -- --]\n ..., \n [0.4449999928474426 0.8316666483879089 0.7616666555404663 ..., -- -- --]\n [0.9750000238418579 0.8216666579246521 0.6583333611488342 ..., -- -- --]\n [0.4983333349227905 0.2083333283662796 0.9150000214576721 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d5890>\n2015-05-15T06:38:40Z\ndoing file 2015/05/15/KVWX/KVWX20150515_064337_V06.gz\n[[0.3683333396911621 0.7283333539962769 0.7283333539962769 ..., -- -- --]\n [0.8050000071525574 0.5550000071525574 0.5649999976158142 ..., -- -- --]\n [0.871666669845581 0.7950000166893005 0.7950000166893005 ..., -- -- --]\n ..., \n [0.9483333230018616 0.8149999976158142 0.9683333039283752 ..., -- -- --]\n [0.8416666388511658 0.7083333134651184 0.6650000214576721 ..., -- -- --]\n [0.7516666650772095 0.8883333206176758 0.8183333277702332 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d5f90>\n2015-05-15T06:43:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_064834_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2f7990>\n2015-05-15T06:48:34Z\ndoing file 2015/05/15/KVWX/KVWX20150515_065330_V06.gz\n[[0.7416666746139526 0.7416666746139526 0.7416666746139526 ..., -- -- --]\n [0.4350000023841858 0.7683333158493042 -- ..., -- -- --]\n [0.35499998927116394 0.43833333253860474 -- ..., -- -- --]\n ..., \n [0.528333306312561 0.5450000166893005 0.5550000071525574 ..., -- -- --]\n [0.6883333325386047 0.7483333349227905 0.7850000262260437 ..., -- -- --]\n [0.9850000143051147 0.9883333444595337 0.9883333444595337 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d5150>\n2015-05-15T06:53:30Z\ndoing file 2015/05/15/KVWX/KVWX20150515_065827_V06.gz\n[[0.6816666722297668 0.8983333110809326 0.92166668176651 ..., -- -- --]\n [0.9449999928474426 0.824999988079071 0.8416666388511658 ..., -- -- --]\n [0.6349999904632568 0.8949999809265137 0.8650000095367432 ..., -- -- --]\n ..., \n [0.8550000190734863 0.7016666531562805 0.6949999928474426 ..., -- -- --]\n [0.6316666603088379 0.9049999713897705 0.7683333158493042 ..., -- -- --]\n [0.9016666412353516 0.875 0.6516666412353516 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d39d0>\n2015-05-15T06:58:27Z\ndoing file 2015/05/15/KVWX/KVWX20150515_070323_V06.gz\n[[-- 0.9950000047683716 0.7149999737739563 ..., -- -- --]\n [-- 0.67166668176651 0.878333330154419 ..., -- -- --]\n [0.9916666746139526 0.9950000047683716 0.7583333253860474 ..., -- -- --]\n ..., \n [0.7149999737739563 0.7250000238418579 0.7016666531562805 ..., -- -- --]\n [0.4350000023841858 0.4116666615009308 0.8316666483879089 ..., -- -- --]\n [0.9083333611488342 0.8650000095367432 0.9983333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d3dd0>\n2015-05-15T07:03:23Z\ndoing file 2015/05/15/KVWX/KVWX20150515_070821_V06.gz\n[[0.4716666638851166 0.8949999809265137 0.2549999952316284 ..., -- -- --]\n [0.7350000143051147 0.9083333611488342 0.9083333611488342 ..., -- -- --]\n [0.6183333396911621 0.8316666483879089 -- ..., -- -- --]\n ..., \n [0.6616666913032532 0.9750000238418579 0.9150000214576721 ..., -- -- --]\n [0.878333330154419 0.4283333420753479 0.7583333253860474 ..., -- -- --]\n [0.6349999904632568 0.875 0.925000011920929 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d3090>\n2015-05-15T07:08:21Z\ndoing file 2015/05/15/KVWX/KVWX20150515_071317_V06.gz\n[[0.6150000095367432 -- -- ..., -- -- --]\n [0.2083333283662796 0.5583333373069763 0.3883333206176758 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.22166666388511658 0.8916666507720947 0.628333330154419 ..., -- -- --]\n [0.8916666507720947 0.9850000143051147 0.9316666722297668 ..., -- -- --]\n [0.9916666746139526 0.9383333325386047 0.9616666436195374 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d5650>\n2015-05-15T07:13:17Z\ndoing file 2015/05/15/KVWX/KVWX20150515_071813_V06.gz\n[[0.3683333396911621 0.28166666626930237 -- ..., -- -- --]\n [0.2083333283662796 0.6449999809265137 0.2083333283662796 ..., -- -- --]\n [0.9283333420753479 0.9750000238418579 0.925000011920929 ..., -- -- --]\n ..., \n [0.9616666436195374 0.8916666507720947 0.9449999928474426 ..., -- -- --]\n [0.7549999952316284 0.8383333086967468 0.9583333134651184 ..., -- -- --]\n [0.7816666960716248 0.8849999904632568 0.9316666722297668 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c302b10>\n2015-05-15T07:18:13Z\ndoing file 2015/05/15/KVWX/KVWX20150515_072310_V06.gz\n[[0.2083333283662796 0.4416666626930237 -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.9049999713897705 0.8416666388511658 ..., -- -- --]\n [-- 0.82833331823349 0.3883333206176758 ..., -- -- --]\n [0.8450000286102295 0.7149999737739563 -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c3029d0>\n2015-05-15T07:23:10Z\ndoing file 2015/05/15/KVWX/KVWX20150515_072806_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- 0.4950000047683716 0.3816666603088379 ..., -- -- --]\n [-- 0.4183333218097687 0.37166666984558105 ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- 0.7049999833106995 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d3d50>\n2015-05-15T07:28:06Z\ndoing file 2015/05/15/KVWX/KVWX20150515_073302_V06.gz\n[[0.971666693687439 0.824999988079071 0.7350000143051147 ..., -- -- --]\n [0.9049999713897705 0.8883333206176758 0.8650000095367432 ..., -- -- --]\n [0.7483333349227905 0.721666693687439 0.6783333420753479 ..., -- -- --]\n ..., \n [0.28833332657814026 0.38499999046325684 0.5116666555404663 ..., -- -- --]\n [0.7016666531562805 0.6850000023841858 0.6683333516120911 ..., -- -- --]\n [0.9683333039283752 0.925000011920929 0.5516666769981384 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d3390>\n2015-05-15T07:33:02Z\ndoing file 2015/05/15/KVWX/KVWX20150515_073759_V06.gz\n[[0.721666693687439 0.7450000047683716 0.7583333253860474 ..., -- -- --]\n [0.37166666984558105 0.4416666626930237 -- ..., -- -- --]\n [0.878333330154419 -- 0.92166668176651 ..., -- -- --]\n ..., \n [0.6916666626930237 0.7250000238418579 0.5516666769981384 ..., -- -- --]\n [0.6816666722297668 0.4449999928474426 0.4483333230018616 ..., -- -- --]\n [0.9783333539962769 0.7183333039283752 0.621666669845581 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d3d90>\n2015-05-15T07:37:59Z\ndoing file 2015/05/15/KVWX/KVWX20150515_074255_V06.gz\n[[0.9950000047683716 0.9950000047683716 0.9816666841506958 ..., -- -- --]\n [0.7649999856948853 0.7116666436195374 0.5316666960716248 ..., -- -- --]\n [0.8383333086967468 0.721666693687439 0.8616666793823242 ..., -- -- --]\n ..., \n [0.8349999785423279 0.9983333349227905 0.971666693687439 ..., -- -- --]\n [0.9816666841506958 0.9816666841506958 0.9350000023841858 ..., -- -- --]\n [0.9883333444595337 0.9950000047683716 0.9916666746139526 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c302e90>\n2015-05-15T07:42:55Z\ndoing file 2015/05/15/KVWX/KVWX20150515_074751_V06.gz\n[[0.4350000023841858 -- 0.9683333039283752 ..., -- -- --]\n [0.2083333283662796 0.4749999940395355 0.7183333039283752 ..., -- -- --]\n [0.28166666626930237 0.375 0.5350000262260437 ..., -- -- --]\n ..., \n [0.8650000095367432 0.3083333373069763 0.7649999856948853 ..., -- -- --]\n [0.5849999785423279 0.6183333396911621 0.5383333563804626 ..., -- -- --]\n [0.2083333283662796 0.6850000023841858 0.67166668176651 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d16ea10>\n2015-05-15T07:47:51Z\ndoing file 2015/05/15/KVWX/KVWX20150515_075247_V06.gz\n[[0.8216666579246521 0.7950000166893005 -- ..., -- -- --]\n [0.8849999904632568 0.7283333539962769 -- ..., -- -- --]\n [0.5816666483879089 0.5183333158493042 0.5183333158493042 ..., -- -- --]\n ..., \n [0.7850000262260437 0.7850000262260437 0.7816666960716248 ..., -- -- --]\n [0.7183333039283752 0.7250000238418579 0.7583333253860474 ..., -- -- --]\n [0.9549999833106995 0.875 0.7850000262260437 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d16ecd0>\n2015-05-15T07:52:47Z\ndoing file 2015/05/15/KVWX/KVWX20150515_075744_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- 0.45500001311302185 0.4449999928474426 ..., -- -- --]\n ..., \n [0.5983333587646484 0.8583333492279053 0.8583333492279053 ..., -- -- --]\n [0.8416666388511658 0.9350000023841858 0.9350000023841858 ..., -- -- --]\n [-- 0.8916666507720947 0.39500001072883606 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c060d50>\n2015-05-15T07:57:44Z\ndoing file 2015/05/15/KVWX/KVWX20150515_080240_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- 0.2083333283662796 ..., -- -- --]\n [-- 0.5183333158493042 0.6050000190734863 ..., -- -- --]\n ..., \n [-- -- 0.9016666412353516 ..., -- -- --]\n [-- -- 0.8483333587646484 ..., -- -- --]\n [-- -- 0.2083333283662796 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c2d3c50>\n2015-05-15T08:02:40Z\ndoing file 2015/05/15/KVWX/KVWX20150515_080737_V06.gz\n[[0.9183333516120911 0.7183333039283752 0.9083333611488342 ..., -- -- --]\n [0.8816666603088379 0.9883333444595337 0.8883333206176758 ..., -- -- --]\n [0.8149999976158142 0.8349999785423279 0.7016666531562805 ..., -- -- --]\n ..., \n [0.9783333539962769 0.8383333086967468 0.2083333283662796 ..., -- -- --]\n [0.9850000143051147 0.9583333134651184 0.7916666865348816 ..., -- -- --]\n [0.5683333277702332 0.7483333349227905 0.5450000166893005 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c302590>\n2015-05-15T08:07:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_081233_V06.gz\n[[0.9150000214576721 0.9549999833106995 0.9883333444595337 ..., -- -- --]\n [0.8083333373069763 0.8616666793823242 0.9549999833106995 ..., -- -- --]\n [0.46166667342185974 0.628333330154419 0.7816666960716248 ..., -- -- --]\n ..., \n [0.2783333361148834 0.8450000286102295 0.6816666722297668 ..., -- -- --]\n [0.7816666960716248 0.9083333611488342 0.9183333516120911 ..., -- -- --]\n [0.49166667461395264 0.8949999809265137 0.9983333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c046a90>\n2015-05-15T08:12:33Z\ndoing file 2015/05/15/KVWX/KVWX20150515_081730_V06.gz\n[[0.9850000143051147 0.9850000143051147 0.8450000286102295 ..., -- -- --]\n [0.9983333349227905 0.9983333349227905 0.925000011920929 ..., -- -- --]\n [0.9983333349227905 0.9983333349227905 0.8916666507720947 ..., -- -- --]\n ..., \n [0.9950000047683716 0.8183333277702332 0.8949999809265137 ..., -- -- --]\n [0.7183333039283752 0.625 0.8983333110809326 ..., -- -- --]\n [0.5816666483879089 0.8583333492279053 0.625 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0468d0>\n2015-05-15T08:17:30Z\ndoing file 2015/05/15/KVWX/KVWX20150515_082227_V06.gz\n[[0.9183333516120911 -- -- ..., -- -- --]\n [0.9750000238418579 -- -- ..., -- -- --]\n [0.9750000238418579 0.8949999809265137 0.4183333218097687 ..., -- -- --]\n ..., \n [0.8883333206176758 0.971666693687439 0.824999988079071 ..., -- -- --]\n [0.5816666483879089 0.8550000190734863 0.8949999809265137 ..., -- -- --]\n [0.82833331823349 0.6983333230018616 0.9183333516120911 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c046810>\n2015-05-15T08:22:27Z\ndoing file 2015/05/15/KVWX/KVWX20150515_082723_V06.gz\n[[0.5083333253860474 0.8683333396911621 0.7683333158493042 ..., -- -- --]\n [0.9016666412353516 0.8983333110809326 0.6583333611488342 ..., -- -- --]\n [0.6516666412353516 0.9350000023841858 0.8183333277702332 ..., -- -- --]\n ..., \n [0.9616666436195374 0.35499998927116394 0.971666693687439 ..., -- -- --]\n [0.9883333444595337 0.7316666841506958 0.9316666722297668 ..., -- -- --]\n [0.9916666746139526 0.82833331823349 0.8516666889190674 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c060b10>\n2015-05-15T08:27:23Z\ndoing file 2015/05/15/KVWX/KVWX20150515_083221_V06.gz\n[[0.37833333015441895 0.5649999976158142 0.7350000143051147 ..., -- -- --]\n [0.24500000476837158 0.9483333230018616 0.7450000047683716 ..., -- -- --]\n [0.875 0.9950000047683716 0.9750000238418579 ..., -- -- --]\n ..., \n [0.3683333396911621 0.9916666746139526 0.9950000047683716 ..., -- -- --]\n [0.351666659116745 0.9449999928474426 0.21833333373069763 ..., -- -- --]\n [-- 0.6650000214576721 0.7983333468437195 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c05cbd0>\n2015-05-15T08:32:21Z\ndoing file 2015/05/15/KVWX/KVWX20150515_083718_V06.gz\n[[-- 0.9983333349227905 0.9983333349227905 ..., -- -- --]\n [-- 0.9983333349227905 0.7516666650772095 ..., -- -- --]\n [-- 0.9950000047683716 0.9950000047683716 ..., -- -- --]\n ..., \n [-- 0.8849999904632568 0.8583333492279053 ..., -- -- --]\n [-- 0.8650000095367432 0.971666693687439 ..., -- -- --]\n [-- 0.8349999785423279 0.9350000023841858 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c05ced0>\n2015-05-15T08:37:18Z\ndoing file 2015/05/15/KVWX/KVWX20150515_084215_V06.gz\n[[0.7883333563804626 0.5516666769981384 0.7616666555404663 ..., -- -- --]\n [0.92166668176651 0.5116666555404663 0.6983333230018616 ..., -- -- --]\n [0.8083333373069763 0.871666669845581 0.721666693687439 ..., -- -- --]\n ..., \n [0.9616666436195374 0.5149999856948853 0.4983333349227905 ..., -- -- --]\n [0.92166668176651 0.7383333444595337 0.7183333039283752 ..., -- -- --]\n [0.8316666483879089 0.6383333206176758 0.5116666555404663 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c060810>\n2015-05-15T08:42:15Z\ndoing file 2015/05/15/KVWX/KVWX20150515_084711_V06.gz\n[[0.9416666626930237 -- 0.9583333134651184 ..., -- -- --]\n [0.9483333230018616 0.6383333206176758 0.6050000190734863 ..., -- -- --]\n [0.2383333295583725 0.5483333468437195 0.8683333396911621 ..., -- -- --]\n ..., \n [0.9049999713897705 0.9683333039283752 0.9883333444595337 ..., -- -- --]\n [0.9683333039283752 0.9316666722297668 0.9316666722297668 ..., -- -- --]\n [0.8416666388511658 0.8849999904632568 0.9016666412353516 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c06a8d0>\n2015-05-15T08:47:11Z\ndoing file 2015/05/15/KVWX/KVWX20150515_085207_V06.gz\n[[0.9950000047683716 0.8816666603088379 0.8916666507720947 ..., -- -- --]\n [0.7450000047683716 0.9950000047683716 0.3316666781902313 ..., -- -- --]\n [0.9549999833106995 0.9783333539962769 0.7850000262260437 ..., -- -- --]\n ..., \n [0.824999988079071 0.9383333325386047 0.9916666746139526 ..., -- -- --]\n [0.8550000190734863 0.9416666626930237 0.9583333134651184 ..., -- -- --]\n [0.8450000286102295 0.875 0.7483333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c06afd0>\n2015-05-15T08:52:07Z\ndoing file 2015/05/15/KVWX/KVWX20150515_085705_V06.gz\n[[0.2083333283662796 -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- -- 0.4716666638851166 ..., -- -- --]\n [0.9083333611488342 -- -- ..., -- -- --]\n [0.8216666579246521 -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c046d10>\n2015-05-15T08:57:05Z\ndoing file 2015/05/15/KVWX/KVWX20150515_090202_V06.gz\n[[-- -- 0.574999988079071 ..., -- -- --]\n [-- 0.31833332777023315 0.2316666692495346 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.9816666841506958 0.9816666841506958 0.9816666841506958 ..., -- -- --]\n [0.9783333539962769 -- 0.9783333539962769 ..., -- -- --]\n [0.9883333444595337 -- 0.9883333444595337 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c06a190>\n2015-05-15T09:02:02Z\ndoing file 2015/05/15/KVWX/KVWX20150515_090658_V06.gz\n[[0.9950000047683716 0.9983333349227905 0.9683333039283752 ..., -- -- --]\n [0.5049999952316284 0.9750000238418579 0.9316666722297668 ..., -- -- --]\n [0.5816666483879089 -- 0.971666693687439 ..., -- -- --]\n ..., \n [0.2083333283662796 0.5616666674613953 0.721666693687439 ..., -- -- --]\n [0.925000011920929 0.7716666460037231 0.7149999737739563 ..., -- -- --]\n [0.7283333539962769 0.9916666746139526 0.6883333325386047 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0709d0>\n2015-05-15T09:06:58Z\ndoing file 2015/05/15/KVWX/KVWX20150515_091155_V06.gz\n[[0.9049999713897705 0.7983333468437195 0.7149999737739563 ..., -- -- --]\n [0.6883333325386047 0.8116666674613953 0.6483333110809326 ..., -- -- --]\n [0.2083333283662796 0.6549999713897705 0.4416666626930237 ..., -- -- --]\n ..., \n [0.6383333206176758 0.6050000190734863 0.4216666519641876 ..., -- -- --]\n [0.8183333277702332 0.2083333283662796 0.8349999785423279 ..., -- -- --]\n [0.9816666841506958 0.621666669845581 0.3216666579246521 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c070e10>\n2015-05-15T09:11:55Z\ndoing file 2015/05/15/KVWX/KVWX20150515_091651_V06.gz\n[[0.6383333206176758 0.6683333516120911 0.7049999833106995 ..., -- -- --]\n [0.9116666913032532 0.9016666412353516 0.8949999809265137 ..., -- -- --]\n [0.971666693687439 0.9416666626930237 0.9049999713897705 ..., -- -- --]\n ..., \n [0.871666669845581 0.9816666841506958 0.6916666626930237 ..., -- -- --]\n [0.6016666889190674 0.6449999809265137 0.6883333325386047 ..., -- -- --]\n [0.878333330154419 0.8483333587646484 0.9150000214576721 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c070790>\n2015-05-15T09:16:51Z\ndoing file 2015/05/15/KVWX/KVWX20150515_092148_V06.gz\n[[0.8183333277702332 0.878333330154419 0.7016666531562805 ..., -- -- --]\n [0.8050000071525574 0.7816666960716248 0.5649999976158142 ..., -- -- --]\n [0.9750000238418579 0.8383333086967468 0.4449999928474426 ..., -- -- --]\n ..., \n [0.9983333349227905 0.7816666960716248 0.9950000047683716 ..., -- -- --]\n [0.9983333349227905 0.6983333230018616 0.9916666746139526 ..., -- -- --]\n [0.9016666412353516 0.3316666781902313 0.37833333015441895 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c06ad50>\n2015-05-15T09:21:48Z\ndoing file 2015/05/15/KVWX/KVWX20150515_092644_V06.gz\n[[0.6916666626930237 0.6316666603088379 0.5816666483879089 ..., -- -- --]\n [0.6983333230018616 0.9916666746139526 0.9950000047683716 ..., -- -- --]\n [0.8550000190734863 0.9883333444595337 0.9883333444595337 ..., -- -- --]\n ..., \n [0.9116666913032532 0.8949999809265137 0.8883333206176758 ..., -- -- --]\n [0.7883333563804626 0.6650000214576721 0.5616666674613953 ..., -- -- --]\n [0.9316666722297668 0.4650000035762787 0.28166666626930237 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c074b50>\n2015-05-15T09:26:44Z\ndoing file 2015/05/15/KVWX/KVWX20150515_093140_V06.gz\n[[0.9883333444595337 -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.3683333396911621 -- 0.7016666531562805 ..., -- -- --]\n [0.4183333218097687 -- 0.5249999761581421 ..., -- -- --]\n [0.24500000476837158 -- 0.971666693687439 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0741d0>\n2015-05-15T09:31:40Z\ndoing file 2015/05/15/KVWX/KVWX20150515_093637_V06.gz\n[[0.398333340883255 0.4650000035762787 -- ..., -- -- --]\n [0.398333340883255 0.34166666865348816 -- ..., -- -- --]\n [0.2083333283662796 0.2083333283662796 -- ..., -- -- --]\n ..., \n [0.8216666579246521 0.8216666579246521 0.8216666579246521 ..., -- -- --]\n [0.6183333396911621 0.6183333396911621 0.6183333396911621 ..., -- -- --]\n [0.6083333492279053 0.6083333492279053 0.6050000190734863 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c070c90>\n2015-05-15T09:36:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_094133_V06.gz\n[[0.7383333444595337 0.7549999952316284 0.7716666460037231 ..., -- -- --]\n [0.9049999713897705 0.7850000262260437 0.7483333349227905 ..., -- -- --]\n [-- -- 0.6983333230018616 ..., -- -- --]\n ..., \n [0.6349999904632568 0.7283333539962769 0.6616666913032532 ..., -- -- --]\n [0.40833333134651184 0.7450000047683716 0.7516666650772095 ..., -- -- --]\n [0.5350000262260437 0.778333306312561 0.778333306312561 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c06ae50>\n2015-05-15T09:41:33Z\ndoing file 2015/05/15/KVWX/KVWX20150515_094630_V06.gz\n[[0.8550000190734863 0.9316666722297668 0.9916666746139526 ..., -- -- --]\n [0.4516666531562805 0.39500001072883606 0.3616666793823242 ..., -- -- --]\n [0.9516666531562805 0.9516666531562805 0.9850000143051147 ..., -- -- --]\n ..., \n [0.6416666507720947 0.6416666507720947 0.8983333110809326 ..., -- -- --]\n [0.4883333444595337 0.7149999737739563 0.7383333444595337 ..., -- -- --]\n [0.7416666746139526 0.7283333539962769 0.9583333134651184 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c070e90>\n2015-05-15T09:46:30Z\ndoing file 2015/05/15/KVWX/KVWX20150515_095127_V06.gz\n[[0.8183333277702332 0.3050000071525574 0.9049999713897705 ..., -- -- --]\n [0.5716666579246521 0.7049999833106995 0.9549999833106995 ..., -- -- --]\n [0.8916666507720947 0.7049999833106995 0.8383333086967468 ..., -- -- --]\n ..., \n [0.9516666531562805 0.9750000238418579 0.9850000143051147 ..., -- -- --]\n [0.9850000143051147 0.7450000047683716 0.7716666460037231 ..., -- -- --]\n [0.5450000166893005 0.8583333492279053 0.7883333563804626 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c074550>\n2015-05-15T09:51:27Z\ndoing file 2015/05/15/KVWX/KVWX20150515_095624_V06.gz\n[[0.5816666483879089 0.2083333283662796 0.6316666603088379 ..., -- -- --]\n [0.8849999904632568 0.5816666483879089 0.5383333563804626 ..., -- -- --]\n [0.7083333134651184 0.5716666579246521 0.5183333158493042 ..., -- -- --]\n ..., \n [0.27166667580604553 0.3583333194255829 0.5149999856948853 ..., -- -- --]\n [0.40833333134651184 0.40833333134651184 0.4116666615009308 ..., -- -- --]\n [0.43833333253860474 0.4516666531562805 0.4883333444595337 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c077a90>\n2015-05-15T09:56:24Z\ndoing file 2015/05/15/KVWX/KVWX20150515_100120_V06.gz\n[[0.871666669845581 0.8650000095367432 0.57833331823349 ..., -- -- --]\n [0.8383333086967468 0.8083333373069763 0.8550000190734863 ..., -- -- --]\n [0.7250000238418579 0.7850000262260437 0.9350000023841858 ..., -- -- --]\n ..., \n [0.8149999976158142 0.9383333325386047 0.7983333468437195 ..., -- -- --]\n [0.9183333516120911 0.3216666579246521 0.8450000286102295 ..., -- -- --]\n [0.9783333539962769 0.9150000214576721 0.8483333587646484 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c077d90>\n2015-05-15T10:01:20Z\ndoing file 2015/05/15/KVWX/KVWX20150515_100618_V06.gz\n[[-- 0.2083333283662796 0.5249999761581421 ..., -- -- --]\n [-- 0.2849999964237213 0.2083333283662796 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.40833333134651184 0.8416666388511658 ..., -- -- --]\n [-- 0.4583333432674408 0.2783333361148834 ..., -- -- --]\n [-- 0.398333340883255 0.2083333283662796 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c053d90>\n2015-05-15T10:06:18Z\ndoing file 2015/05/15/KVWX/KVWX20150515_101114_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- 0.9449999928474426 0.721666693687439 ..., -- -- --]\n ..., \n [0.46166667342185974 0.43166667222976685 0.4350000023841858 ..., -- -- --]\n [0.2783333361148834 -- -- ..., -- -- --]\n [0.3016666769981384 -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c074110>\n2015-05-15T10:11:14Z\ndoing file 2015/05/15/KVWX/KVWX20150515_101611_V06.gz\n[[0.9316666722297668 0.9383333325386047 0.871666669845581 ..., -- -- --]\n [0.9750000238418579 0.8149999976158142 0.7649999856948853 ..., -- -- --]\n [0.7483333349227905 0.9516666531562805 0.9350000023841858 ..., -- -- --]\n ..., \n [0.7250000238418579 0.9816666841506958 0.7749999761581421 ..., -- -- --]\n [0.9950000047683716 0.9916666746139526 0.9883333444595337 ..., -- -- --]\n [0.9816666841506958 0.9750000238418579 0.9683333039283752 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c0748d0>\n2015-05-15T10:16:11Z\ndoing file 2015/05/15/KVWX/KVWX20150515_102108_V06.gz\n[[0.9049999713897705 0.8849999904632568 0.8883333206176758 ..., -- -- --]\n [0.7483333349227905 0.7716666460037231 0.7883333563804626 ..., -- -- --]\n [0.7483333349227905 0.7049999833106995 0.675000011920929 ..., -- -- --]\n ..., \n [0.5983333587646484 0.8883333206176758 0.8816666603088379 ..., -- -- --]\n [0.5883333086967468 0.9350000023841858 0.7250000238418579 ..., -- -- --]\n [0.8916666507720947 0.8116666674613953 0.8016666769981384 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c079ad0>\n2015-05-15T10:21:08Z\ndoing file 2015/05/15/KVWX/KVWX20150515_102604_V06.gz\n[[0.7816666960716248 0.7983333468437195 -- ..., -- -- --]\n [0.8116666674613953 0.8083333373069763 -- ..., -- -- --]\n [0.7083333134651184 0.7083333134651184 -- ..., -- -- --]\n ..., \n [0.7749999761581421 0.7516666650772095 0.7149999737739563 ..., -- -- --]\n [0.7083333134651184 0.7083333134651184 0.7149999737739563 ..., -- -- --]\n [0.925000011920929 0.8683333396911621 0.8650000095367432 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c079510>\n2015-05-15T10:26:04Z\ndoing file 2015/05/15/KVWX/KVWX20150515_103101_V06.gz\n[[0.9916666746139526 0.9950000047683716 0.9983333349227905 ..., -- -- --]\n [0.9750000238418579 0.9816666841506958 0.9850000143051147 ..., -- -- --]\n [0.4516666531562805 0.5383333563804626 0.7749999761581421 ..., -- -- --]\n ..., \n [0.4650000035762787 0.6150000095367432 0.7649999856948853 ..., -- -- --]\n [0.8316666483879089 0.67166668176651 0.9516666531562805 ..., -- -- --]\n [0.8550000190734863 0.92166668176651 0.9583333134651184 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c079d10>\n2015-05-15T10:31:01Z\ndoing file 2015/05/15/KVWX/KVWX20150515_103557_V06.gz\n[[0.9783333539962769 0.9150000214576721 0.9750000238418579 ..., -- -- --]\n [0.82833331823349 0.9783333539962769 0.8450000286102295 ..., -- -- --]\n [0.9049999713897705 0.8983333110809326 0.8450000286102295 ..., -- -- --]\n ..., \n [0.9783333539962769 0.9616666436195374 0.871666669845581 ..., -- -- --]\n [0.9683333039283752 0.9649999737739563 0.7516666650772095 ..., -- -- --]\n [0.9150000214576721 0.9350000023841858 0.925000011920929 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c053c10>\n2015-05-15T10:35:57Z\ndoing file 2015/05/15/KVWX/KVWX20150515_104056_V06.gz\n[[0.7616666555404663 0.8983333110809326 0.9516666531562805 ..., -- -- --]\n [0.9416666626930237 0.9983333349227905 0.8016666769981384 ..., -- -- --]\n [0.9983333349227905 0.9883333444595337 0.9683333039283752 ..., -- -- --]\n ..., \n [0.9049999713897705 0.4583333432674408 0.3216666579246521 ..., -- -- --]\n [0.5716666579246521 0.4650000035762787 0.28166666626930237 ..., -- -- --]\n [0.9783333539962769 0.9750000238418579 0.971666693687439 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e010c10>\n2015-05-15T10:40:56Z\ndoing file 2015/05/15/KVWX/KVWX20150515_104552_V06.gz\n[[-- 0.6850000023841858 0.8849999904632568 ..., -- -- --]\n [0.9016666412353516 0.7350000143051147 0.9850000143051147 ..., -- -- --]\n [0.39500001072883606 0.5316666960716248 0.8616666793823242 ..., -- -- --]\n ..., \n [0.46833333373069763 0.6383333206176758 0.8416666388511658 ..., -- -- --]\n [0.4816666543483734 -- 0.3816666603088379 ..., -- -- --]\n [0.9683333039283752 0.9583333134651184 0.9483333230018616 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e010ad0>\n2015-05-15T10:45:52Z\ndoing file 2015/05/15/KVWX/KVWX20150515_105048_V06.gz\n[[0.9549999833106995 0.8816666603088379 0.9483333230018616 ..., -- -- --]\n [0.9449999928474426 0.6816666722297668 0.621666669845581 ..., -- -- --]\n [-- 0.8983333110809326 0.8149999976158142 ..., -- -- --]\n ..., \n [0.9483333230018616 0.5383333563804626 0.6916666626930237 ..., -- -- --]\n [0.9283333420753479 0.8183333277702332 0.9116666913032532 ..., -- -- --]\n [0.8516666889190674 0.9416666626930237 0.8849999904632568 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e0100d0>\n2015-05-15T10:50:48Z\ndoing file 2015/05/15/KVWX/KVWX20150515_105545_V06.gz\n[[0.8583333492279053 0.9150000214576721 0.7649999856948853 ..., -- -- --]\n [0.8583333492279053 0.8349999785423279 0.7683333158493042 ..., -- -- --]\n [0.7816666960716248 0.7316666841506958 0.6783333420753479 ..., -- -- --]\n ..., \n [0.528333306312561 0.6583333611488342 0.9383333325386047 ..., -- -- --]\n [0.8516666889190674 0.7516666650772095 0.8883333206176758 ..., -- -- --]\n [0.8983333110809326 0.4716666638851166 0.7649999856948853 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e01a910>\n2015-05-15T10:55:45Z\ndoing file 2015/05/15/KVWX/KVWX20150515_110041_V06.gz\n[[0.4216666519641876 0.7283333539962769 0.8483333587646484 ..., -- -- --]\n [0.9049999713897705 0.7816666960716248 0.7716666460037231 ..., -- -- --]\n [0.9750000238418579 0.9583333134651184 0.9350000023841858 ..., -- -- --]\n ..., \n [0.7549999952316284 0.5383333563804626 0.9449999928474426 ..., -- -- --]\n [0.8216666579246521 0.7983333468437195 0.9016666412353516 ..., -- -- --]\n [0.8349999785423279 0.8916666507720947 0.7916666865348816 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e01ad50>\n2015-05-15T11:00:41Z\ndoing file 2015/05/15/KVWX/KVWX20150515_110537_V06.gz\n[[-- 0.778333306312561 0.21833333373069763 ..., -- -- --]\n [-- 0.25833332538604736 0.2616666555404663 ..., -- -- --]\n [-- 0.6683333516120911 0.5116666555404663 ..., -- -- --]\n ..., \n [-- 0.9049999713897705 0.5450000166893005 ..., -- -- --]\n [-- 0.5216666460037231 0.4449999928474426 ..., -- -- --]\n [-- -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e01a190>\n2015-05-15T11:05:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_111034_V06.gz\n[[0.9850000143051147 -- 0.9850000143051147 ..., -- -- --]\n [0.5983333587646484 -- 0.5983333587646484 ..., -- -- --]\n [0.5316666960716248 -- 0.6316666603088379 ..., -- -- --]\n ..., \n [0.5316666960716248 0.6850000023841858 0.7583333253860474 ..., -- -- --]\n [-- 0.5883333086967468 0.7450000047683716 ..., -- -- --]\n [0.9549999833106995 0.9449999928474426 0.9150000214576721 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c079d50>\n2015-05-15T11:10:34Z\ndoing file 2015/05/15/KVWX/KVWX20150515_111530_V06.gz\n[[0.9083333611488342 0.46166667342185974 0.4350000023841858 ..., -- -- --]\n [0.9583333134651184 0.9150000214576721 1.0516666173934937 ..., -- -- --]\n [0.92166668176651 -- -- ..., -- -- --]\n ..., \n [0.9850000143051147 0.9850000143051147 0.9850000143051147 ..., -- -- --]\n [0.9916666746139526 0.9916666746139526 0.9916666746139526 ..., -- -- --]\n [0.971666693687439 -- 0.2083333283662796 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e017a50>\n2015-05-15T11:15:30Z\ndoing file 2015/05/15/KVWX/KVWX20150515_112028_V06.gz\n[[0.6050000190734863 0.4183333218097687 0.4350000023841858 ..., -- -- --]\n [0.6116666793823242 0.7850000262260437 0.8116666674613953 ..., -- -- --]\n [0.7116666436195374 0.8450000286102295 0.9283333420753479 ..., -- -- --]\n ..., \n [0.9150000214576721 0.9683333039283752 0.9449999928474426 ..., -- -- --]\n [0.8516666889190674 0.9850000143051147 0.971666693687439 ..., -- -- --]\n [0.9616666436195374 0.9883333444595337 0.9383333325386047 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e017e50>\n2015-05-15T11:20:28Z\ndoing file 2015/05/15/KVWX/KVWX20150515_112551_V06.gz\n[[0.5849999785423279 0.7616666555404663 0.8516666889190674 ..., -- -- --]\n [0.2083333283662796 0.7183333039283752 0.3383333384990692 ..., -- -- --]\n [0.2083333283662796 0.31166666746139526 0.3050000071525574 ..., -- -- --]\n ..., \n [0.21833333373069763 0.4483333230018616 0.9549999833106995 ..., -- -- --]\n [0.5816666483879089 0.47833332419395447 0.9416666626930237 ..., -- -- --]\n [0.67166668176651 0.7016666531562805 0.9649999737739563 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e017c90>\n2015-05-15T11:25:51Z\ndoing file 2015/05/15/KVWX/KVWX20150515_113047_V06.gz\n[[0.9483333230018616 -- -- ..., -- -- --]\n [0.8816666603088379 0.9649999737739563 0.7483333349227905 ..., -- -- --]\n [0.5183333158493042 0.9983333349227905 0.9950000047683716 ..., -- -- --]\n ..., \n [0.8516666889190674 -- -- ..., -- -- --]\n [0.9649999737739563 0.7250000238418579 0.3383333384990692 ..., -- -- --]\n [0.7549999952316284 0.9383333325386047 0.8949999809265137 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e01af90>\n2015-05-15T11:30:47Z\ndoing file 2015/05/15/KVWX/KVWX20150515_113545_V06.gz\n[[0.7383333444595337 0.8416666388511658 0.9350000023841858 ..., -- -- --]\n [0.5316666960716248 0.5583333373069763 0.7083333134651184 ..., -- -- --]\n [0.6183333396911621 0.8983333110809326 0.7416666746139526 ..., -- -- --]\n ..., \n [0.871666669845581 0.7250000238418579 0.3916666805744171 ..., -- -- --]\n [0.8983333110809326 0.875 0.8483333587646484 ..., -- -- --]\n [0.9750000238418579 0.4583333432674408 0.4749999940395355 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e01bb90>\n2015-05-15T11:35:45Z\ndoing file 2015/05/15/KVWX/KVWX20150515_114041_V06.gz\n[[-- -- 0.3050000071525574 ..., -- -- --]\n [0.6583333611488342 0.49166667461395264 0.28833332657814026 ..., -- -- --]\n [0.2083333283662796 0.3816666603088379 0.2083333283662796 ..., -- -- --]\n ..., \n [0.8316666483879089 0.39500001072883606 0.2083333283662796 ..., -- -- --]\n [0.9783333539962769 -- 0.2616666555404663 ..., -- -- --]\n [0.9683333039283752 -- 0.4950000047683716 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e01b410>\n2015-05-15T11:40:41Z\ndoing file 2015/05/15/KVWX/KVWX20150515_114537_V06.gz\n[[0.23499999940395355 0.24833333492279053 0.28833332657814026 ..., -- -- --]\n [-- 0.6183333396911621 0.6016666889190674 ..., -- -- --]\n [0.5849999785423279 0.82833331823349 0.4283333420753479 ..., -- -- --]\n ..., \n [-- 0.9283333420753479 0.8616666793823242 ..., -- -- --]\n [0.43166667222976685 0.574999988079071 0.36500000953674316 ..., -- -- --]\n [0.2083333283662796 0.9183333516120911 0.40833333134651184 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e01b450>\n2015-05-15T11:45:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_115035_V06.gz\n[[0.9649999737739563 0.528333306312561 0.92166668176651 ..., -- -- --]\n [0.9883333444595337 0.9649999737739563 0.9616666436195374 ..., -- -- --]\n [0.9883333444595337 0.971666693687439 0.9616666436195374 ..., -- -- --]\n ..., \n [0.8816666603088379 0.9183333516120911 0.9583333134651184 ..., -- -- --]\n [0.925000011920929 0.6016666889190674 0.8483333587646484 ..., -- -- --]\n [0.9916666746139526 0.7116666436195374 0.7016666531562805 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e017810>\n2015-05-15T11:50:35Z\ndoing file 2015/05/15/KVWX/KVWX20150515_115624_V06.gz\n[[0.9850000143051147 0.9850000143051147 0.9850000143051147 ..., -- -- --]\n [0.9850000143051147 0.9883333444595337 0.9883333444595337 ..., -- -- --]\n [0.9750000238418579 0.9549999833106995 0.9049999713897705 ..., -- -- --]\n ..., \n [0.8483333587646484 0.9016666412353516 0.8650000095367432 ..., -- -- --]\n [0.6383333206176758 0.6983333230018616 0.7649999856948853 ..., -- -- --]\n [0.5016666650772095 0.6016666889190674 0.7116666436195374 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e02fcd0>\n2015-05-15T11:56:24Z\ndoing file 2015/05/15/KVWX/KVWX20150515_120214_V06.gz\n[[0.7683333158493042 0.4950000047683716 0.22166666388511658 ..., -- -- --]\n [0.9950000047683716 0.4950000047683716 0.35499998927116394 ..., -- -- --]\n [0.7916666865348816 0.375 0.4749999940395355 ..., -- -- --]\n ..., \n [0.351666659116745 0.9416666626930237 0.8550000190734863 ..., -- -- --]\n [0.5849999785423279 0.2783333361148834 0.3050000071525574 ..., -- -- --]\n [0.45500001311302185 0.7016666531562805 0.3016666769981384 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e02fb90>\n2015-05-15T12:02:14Z\ndoing file 2015/05/15/KVWX/KVWX20150515_120737_V06.gz\n[[0.9383333325386047 0.9983333349227905 0.721666693687439 ..., -- -- --]\n [0.8849999904632568 0.8583333492279053 0.7016666531562805 ..., -- -- --]\n [0.8050000071525574 0.9783333539962769 0.41499999165534973 ..., -- -- --]\n ..., \n [0.9350000023841858 0.7016666531562805 0.8983333110809326 ..., -- -- --]\n [0.5883333086967468 0.39500001072883606 0.9483333230018616 ..., -- -- --]\n [0.5816666483879089 0.4183333218097687 0.9449999928474426 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e0177d0>\n2015-05-15T12:07:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_121300_V06.gz\n[[0.92166668176651 0.49166667461395264 0.6583333611488342 ..., -- -- --]\n [0.871666669845581 0.8416666388511658 0.375 ..., -- -- --]\n [0.7250000238418579 0.42500001192092896 0.8683333396911621 ..., -- -- --]\n ..., \n [0.971666693687439 -- 0.5950000286102295 ..., -- -- --]\n [0.5450000166893005 0.7816666960716248 0.7616666555404663 ..., -- -- --]\n [0.9283333420753479 0.5883333086967468 0.6050000190734863 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e0339d0>\n2015-05-15T12:13:00Z\ndoing file 2015/05/15/KVWX/KVWX20150515_121852_V06.gz\n[[-- -- -- ..., -- -- --]\n [0.40166667103767395 0.27166667580604553 -- ..., -- -- --]\n [0.5183333158493042 0.4183333218097687 -- ..., -- -- --]\n ..., \n [0.7149999737739563 0.9950000047683716 -- ..., -- -- --]\n [-- 0.8450000286102295 0.4983333349227905 ..., -- -- --]\n [0.3050000071525574 0.82833331823349 -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e033e10>\n2015-05-15T12:18:52Z\ndoing file 2015/05/15/KVWX/KVWX20150515_122414_V06.gz\n[[0.9616666436195374 0.971666693687439 0.8650000095367432 ..., -- -- --]\n [0.8949999809265137 0.9316666722297668 0.9083333611488342 ..., -- -- --]\n [0.35499998927116394 0.7183333039283752 0.971666693687439 ..., -- -- --]\n ..., \n [0.82833331823349 0.5216666460037231 0.925000011920929 ..., -- -- --]\n [0.2083333283662796 0.9649999737739563 0.7950000166893005 ..., -- -- --]\n [0.7450000047683716 0.7649999856948853 0.7749999761581421 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e033fd0>\n2015-05-15T12:24:14Z\ndoing file 2015/05/15/KVWX/KVWX20150515_123005_V06.gz\n[[-- -- 0.41499999165534973 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- -- 0.67166668176651 ..., -- -- --]\n [-- -- 0.5983333587646484 ..., -- -- --]\n [-- -- 0.57833331823349 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e02fe90>\n2015-05-15T12:30:05Z\ndoing file 2015/05/15/KVWX/KVWX20150515_123554_V06.gz\n[[0.5016666650772095 0.4749999940395355 0.8816666603088379 ..., -- -- --]\n [0.3816666603088379 0.675000011920929 -- ..., -- -- --]\n [-- 0.6650000214576721 0.42500001192092896 ..., -- -- --]\n ..., \n [0.23499999940395355 0.2083333283662796 0.5016666650772095 ..., -- -- --]\n [0.9116666913032532 0.9483333230018616 0.9616666436195374 ..., -- -- --]\n [0.4716666638851166 0.5716666579246521 0.625 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e023b10>\n2015-05-15T12:35:54Z\ndoing file 2015/05/15/KVWX/KVWX20150515_124356_V06.gz\n[[0.9483333230018616 0.8416666388511658 0.9616666436195374 ..., -- -- --]\n [0.9449999928474426 0.9283333420753479 0.8916666507720947 ..., -- -- --]\n [0.8349999785423279 0.7083333134651184 0.9683333039283752 ..., -- -- --]\n ..., \n [0.8883333206176758 0.8416666388511658 0.7649999856948853 ..., -- -- --]\n [0.8983333110809326 0.39500001072883606 0.9916666746139526 ..., -- -- --]\n [0.8683333396911621 0.9183333516120911 0.9950000047683716 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e0234d0>\n2015-05-15T12:43:56Z\ndoing file 2015/05/15/KVWX/KVWX20150515_124947_V06.gz\n[[-- 0.2083333283662796 0.47833332419395447 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- -- 0.8883333206176758 ..., -- -- --]\n [0.5249999761581421 0.7916666865348816 0.8016666769981384 ..., -- -- --]\n [-- 0.6650000214576721 0.7583333253860474 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e02f4d0>\n2015-05-15T12:49:47Z\ndoing file 2015/05/15/KVWX/KVWX20150515_125536_V06.gz\n[[0.628333330154419 0.6483333110809326 0.9516666531562805 ..., -- -- --]\n [0.9449999928474426 0.92166668176651 0.925000011920929 ..., -- -- --]\n [0.5016666650772095 0.2083333283662796 0.8616666793823242 ..., -- -- --]\n ..., \n [0.971666693687439 0.8683333396911621 0.6516666412353516 ..., -- -- --]\n [0.9750000238418579 0.9516666531562805 0.8416666388511658 ..., -- -- --]\n [0.9383333325386047 0.871666669845581 0.9616666436195374 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e023410>\n2015-05-15T12:55:36Z\ndoing file 2015/05/15/KVWX/KVWX20150515_130126_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- 0.2083333283662796 0.22166666388511658 ..., -- -- --]\n [-- 0.7016666531562805 0.2083333283662796 ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e014c50>\n2015-05-15T13:01:26Z\ndoing file 2015/05/15/KVWX/KVWX20150515_130716_V06.gz\n[[0.7149999737739563 0.7149999737739563 0.7149999737739563 ..., -- -- --]\n [0.21166667342185974 0.778333306312561 0.5983333587646484 ..., -- -- --]\n [0.22499999403953552 0.351666659116745 0.4983333349227905 ..., -- -- --]\n ..., \n [0.9916666746139526 0.9950000047683716 0.9416666626930237 ..., -- -- --]\n [0.6150000095367432 0.9016666412353516 0.7483333349227905 ..., -- -- --]\n [0.824999988079071 0.7516666650772095 0.7483333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e014f90>\n2015-05-15T13:07:16Z\ndoing file 2015/05/15/KVWX/KVWX20150515_131306_V06.gz\n[[0.5649999976158142 0.8149999976158142 0.7749999761581421 ..., -- -- --]\n [0.9850000143051147 0.9350000023841858 0.6483333110809326 ..., -- -- --]\n [0.9116666913032532 0.9850000143051147 0.49166667461395264 ..., -- -- --]\n ..., \n [0.8450000286102295 0.7283333539962769 0.6116666793823242 ..., -- -- --]\n [0.92166668176651 0.8849999904632568 0.8149999976158142 ..., -- -- --]\n [0.875 0.8816666603088379 0.8583333492279053 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e0238d0>\n2015-05-15T13:13:06Z\ndoing file 2015/05/15/KVWX/KVWX20150515_131856_V06.gz\n[[0.971666693687439 0.9449999928474426 0.9049999713897705 ..., -- -- --]\n [0.6383333206176758 0.5983333587646484 0.5350000262260437 ..., -- -- --]\n [0.6850000023841858 0.675000011920929 0.6483333110809326 ..., -- -- --]\n ..., \n [0.4116666615009308 0.5883333086967468 0.7616666555404663 ..., -- -- --]\n [0.875 0.43833333253860474 0.9883333444595337 ..., -- -- --]\n [0.8650000095367432 0.528333306312561 0.4583333432674408 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d47e950>\n2015-05-15T13:18:56Z\ndoing file 2015/05/15/KVWX/KVWX20150515_132448_V06.gz\n[[0.7983333468437195 0.3383333384990692 -- ..., -- -- --]\n [0.8849999904632568 0.4749999940395355 0.2083333283662796 ..., -- -- --]\n [0.9283333420753479 0.9683333039283752 -- ..., -- -- --]\n ..., \n [0.6150000095367432 0.9583333134651184 0.9416666626930237 ..., -- -- --]\n [0.46833333373069763 0.9150000214576721 0.8650000095367432 ..., -- -- --]\n [0.6850000023841858 0.5583333373069763 0.574999988079071 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d47ef10>\n2015-05-15T13:24:48Z\ndoing file 2015/05/15/KVWX/KVWX20150515_133038_V06.gz\n[[0.8483333587646484 0.8816666603088379 0.8949999809265137 ..., -- -- --]\n [0.28833332657814026 0.7316666841506958 0.7683333158493042 ..., -- -- --]\n [0.3216666579246521 0.8349999785423279 0.9416666626930237 ..., -- -- --]\n ..., \n [-- 0.8983333110809326 0.92166668176651 ..., -- -- --]\n [0.41499999165534973 0.625 0.7916666865348816 ..., -- -- --]\n [0.6383333206176758 0.621666669845581 0.5916666388511658 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e023f10>\n2015-05-15T13:30:38Z\ndoing file 2015/05/15/KVWX/KVWX20150515_133628_V06.gz\n[[0.8349999785423279 0.9816666841506958 0.5816666483879089 ..., -- -- --]\n [0.9150000214576721 0.8550000190734863 0.82833331823349 ..., -- -- --]\n [0.971666693687439 0.6850000023841858 0.8083333373069763 ..., -- -- --]\n ..., \n [0.9383333325386047 0.9383333325386047 0.8383333086967468 ..., -- -- --]\n [0.9350000023841858 0.8883333206176758 0.67166668176651 ..., -- -- --]\n [0.675000011920929 0.9583333134651184 0.7183333039283752 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d47e750>\n2015-05-15T13:36:28Z\ndoing file 2015/05/15/KVWX/KVWX20150515_134218_V06.gz\n[[0.5883333086967468 0.34166666865348816 0.6650000214576721 ..., -- -- --]\n [0.8949999809265137 0.8983333110809326 0.9283333420753479 ..., -- -- --]\n [0.2683333456516266 0.6949999928474426 0.9383333325386047 ..., -- -- --]\n ..., \n [0.9883333444595337 0.8583333492279053 0.6650000214576721 ..., -- -- --]\n [0.7350000143051147 0.2083333283662796 0.2083333283662796 ..., -- -- --]\n [0.7683333158493042 0.2549999952316284 0.574999988079071 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d47edd0>\n2015-05-15T13:42:18Z\ndoing file 2015/05/15/KVWX/KVWX20150515_134808_V06.gz\n[[0.3149999976158142 0.351666659116745 0.9049999713897705 ..., -- -- --]\n [0.7250000238418579 0.7583333253860474 0.9850000143051147 ..., -- -- --]\n [0.7850000262260437 0.721666693687439 0.6650000214576721 ..., -- -- --]\n ..., \n [0.4816666543483734 0.4950000047683716 0.5649999976158142 ..., -- -- --]\n [0.8583333492279053 0.9350000023841858 0.9783333539962769 ..., -- -- --]\n [0.9116666913032532 0.7083333134651184 0.9283333420753479 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e0145d0>\n2015-05-15T13:48:08Z\ndoing file 2015/05/15/KVWX/KVWX20150515_135357_V06.gz\n[[0.9683333039283752 0.9783333539962769 0.4416666626930237 ..., -- -- --]\n [0.6449999809265137 0.9116666913032532 0.875 ..., -- -- --]\n [0.92166668176651 0.7950000166893005 0.8050000071525574 ..., -- -- --]\n ..., \n [0.8816666603088379 0.8816666603088379 0.92166668176651 ..., -- -- --]\n [0.7616666555404663 0.9150000214576721 0.9283333420753479 ..., -- -- --]\n [0.9316666722297668 0.9016666412353516 0.9116666913032532 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d485c90>\n2015-05-15T13:53:57Z\ndoing file 2015/05/15/KVWX/KVWX20150515_135947_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [0.7816666960716248 0.7749999761581421 0.7716666460037231 ..., -- -- --]\n ..., \n [0.528333306312561 0.5116666555404663 1.0049999952316284 ..., -- -- --]\n [0.528333306312561 0.7350000143051147 0.875 ..., -- -- --]\n [0.2983333468437195 0.9683333039283752 0.5983333587646484 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d485450>\n2015-05-15T13:59:47Z\ndoing file 2015/05/15/KVWX/KVWX20150515_140537_V06.gz\n[[0.49166667461395264 0.2083333283662796 0.67166668176651 ..., -- -- --]\n [0.3050000071525574 0.35499998927116394 0.38499999046325684 ..., -- -- --]\n [0.4416666626930237 -- -- ..., -- -- --]\n ..., \n [0.9983333349227905 0.6616666913032532 0.8683333396911621 ..., -- -- --]\n [0.9283333420753479 0.37166666984558105 0.8816666603088379 ..., -- -- --]\n [0.7350000143051147 0.40833333134651184 0.3149999976158142 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d485850>\n2015-05-15T14:05:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_141100_V06.gz\n[[0.7450000047683716 -- 0.8149999976158142 ..., -- -- --]\n [0.3283333480358124 -- 0.31166666746139526 ..., -- -- --]\n [0.82833331823349 -- 0.871666669845581 ..., -- -- --]\n ..., \n [0.46166667342185974 0.628333330154419 0.7716666460037231 ..., -- -- --]\n [0.6949999928474426 0.7116666436195374 0.7316666841506958 ..., -- -- --]\n [0.875 0.871666669845581 0.8583333492279053 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e01b2d0>\n2015-05-15T14:11:00Z\ndoing file 2015/05/15/KVWX/KVWX20150515_141624_V06.gz\n[[0.9483333230018616 0.9316666722297668 0.9016666412353516 ..., -- -- --]\n [0.9783333539962769 0.9449999928474426 0.8983333110809326 ..., -- -- --]\n [0.9916666746139526 0.9916666746139526 0.9883333444595337 ..., -- -- --]\n ..., \n [0.9750000238418579 0.971666693687439 0.971666693687439 ..., -- -- --]\n [0.9850000143051147 0.9616666436195374 0.9350000023841858 ..., -- -- --]\n [0.8616666793823242 0.871666669845581 0.8883333206176758 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d48d510>\n2015-05-15T14:16:24Z\ndoing file 2015/05/15/KVWX/KVWX20150515_142146_V06.gz\n[[0.8550000190734863 0.9016666412353516 0.7950000166893005 ..., -- -- --]\n [0.9449999928474426 0.8516666889190674 0.8883333206176758 ..., -- -- --]\n [0.9316666722297668 0.6150000095367432 0.8516666889190674 ..., -- -- --]\n ..., \n [0.8683333396911621 0.824999988079071 0.9416666626930237 ..., -- -- --]\n [0.6449999809265137 0.6616666913032532 0.6883333325386047 ..., -- -- --]\n [0.7083333134651184 0.5983333587646484 0.4950000047683716 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d48df10>\n2015-05-15T14:21:46Z\ndoing file 2015/05/15/KVWX/KVWX20150515_142737_V06.gz\n[[0.8683333396911621 -- 0.8849999904632568 ..., -- -- --]\n [0.7016666531562805 -- 0.6050000190734863 ..., -- -- --]\n [0.8149999976158142 -- 0.6016666889190674 ..., -- -- --]\n ..., \n [0.8216666579246521 0.8083333373069763 0.8083333373069763 ..., -- -- --]\n [0.9183333516120911 0.9049999713897705 0.8849999904632568 ..., -- -- --]\n [0.9016666412353516 0.8949999809265137 0.9083333611488342 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d4858d0>\n2015-05-15T14:27:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_143300_V06.gz\n[[0.6916666626930237 0.7250000238418579 0.5216666460037231 ..., -- -- --]\n [0.4350000023841858 0.9383333325386047 0.9316666722297668 ..., -- -- --]\n [0.4883333444595337 0.9816666841506958 0.8316666483879089 ..., -- -- --]\n ..., \n [0.5716666579246521 0.9383333325386047 0.5416666865348816 ..., -- -- --]\n [0.5649999976158142 0.8416666388511658 0.7983333468437195 ..., -- -- --]\n [0.8983333110809326 0.9816666841506958 0.7983333468437195 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d49df90>\n2015-05-15T14:33:00Z\ndoing file 2015/05/15/KVWX/KVWX20150515_143824_V06.gz\n[[0.9683333039283752 0.9649999737739563 0.9150000214576721 ..., -- -- --]\n [0.8316666483879089 0.8050000071525574 0.7416666746139526 ..., -- -- --]\n [0.7616666555404663 0.7883333563804626 0.9483333230018616 ..., -- -- --]\n ..., \n [0.8849999904632568 0.8550000190734863 0.9016666412353516 ..., -- -- --]\n [0.9449999928474426 0.7350000143051147 0.7250000238418579 ..., -- -- --]\n [0.9316666722297668 0.5816666483879089 0.5716666579246521 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d49da10>\n2015-05-15T14:38:24Z\ndoing file 2015/05/15/KVWX/KVWX20150515_144346_V06.gz\n[[0.8650000095367432 0.9449999928474426 0.398333340883255 ..., -- -- --]\n [0.8383333086967468 0.8183333277702332 0.8183333277702332 ..., -- -- --]\n [0.7450000047683716 0.7350000143051147 0.7283333539962769 ..., -- -- --]\n ..., \n [0.9483333230018616 0.8883333206176758 0.7983333468437195 ..., -- -- --]\n [0.7916666865348816 0.8650000095367432 0.5350000262260437 ..., -- -- --]\n [0.5683333277702332 0.8650000095367432 0.6483333110809326 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d49d250>\n2015-05-15T14:43:46Z\ndoing file 2015/05/15/KVWX/KVWX20150515_144908_V06.gz\n[[-- 0.9183333516120911 0.9350000023841858 ..., -- -- --]\n [-- 0.6816666722297668 0.8083333373069763 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.9950000047683716 0.9683333039283752 ..., -- -- --]\n [0.7149999737739563 0.7250000238418579 0.628333330154419 ..., -- -- --]\n [-- 0.878333330154419 0.7983333468437195 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d47ef50>\n2015-05-15T14:49:08Z\ndoing file 2015/05/15/KVWX/KVWX20150515_145431_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- 0.6349999904632568 0.2150000035762787 ..., -- -- --]\n [-- 0.971666693687439 0.2083333283662796 ..., -- -- --]\n ..., \n [0.7483333349227905 0.4816666543483734 0.34833332896232605 ..., -- -- --]\n [0.628333330154419 0.9049999713897705 0.5450000166893005 ..., -- -- --]\n [0.7616666555404663 0.9750000238418579 0.7583333253860474 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d4a7c10>\n2015-05-15T14:54:31Z\ndoing file 2015/05/15/KVWX/KVWX20150515_145954_V06.gz\n[[0.9549999833106995 0.9116666913032532 0.8516666889190674 ..., -- -- --]\n [0.8650000095367432 0.8016666769981384 0.7950000166893005 ..., -- -- --]\n [0.9383333325386047 0.7583333253860474 0.7083333134651184 ..., -- -- --]\n ..., \n [0.7183333039283752 0.7116666436195374 0.7049999833106995 ..., -- -- --]\n [0.9950000047683716 0.9950000047683716 0.9916666746139526 ..., -- -- --]\n [0.9850000143051147 0.9816666841506958 0.9750000238418579 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d4a73d0>\n2015-05-15T14:59:54Z\ndoing file 2015/05/15/KVWX/KVWX20150515_150516_V06.gz\n[[0.9150000214576721 0.9116666913032532 0.925000011920929 ..., -- -- --]\n [0.8816666603088379 0.8949999809265137 0.92166668176651 ..., -- -- --]\n [0.7383333444595337 0.7016666531562805 0.7283333539962769 ..., -- -- --]\n ..., \n [0.8816666603088379 0.8416666388511658 0.7950000166893005 ..., -- -- --]\n [0.8483333587646484 0.7950000166893005 0.7749999761581421 ..., -- -- --]\n [0.8016666769981384 0.8983333110809326 0.8683333396911621 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d478b50>\n2015-05-15T15:05:16Z\ndoing file 2015/05/15/KVWX/KVWX20150515_150553_V06.gz\n[[0.9649999737739563 0.9816666841506958 0.6150000095367432 ..., -- -- --]\n [0.9549999833106995 0.8349999785423279 0.7283333539962769 ..., -- -- --]\n [0.5049999952316284 0.9850000143051147 0.47833332419395447 ..., -- -- --]\n ..., \n [-- 0.9016666412353516 0.8416666388511658 ..., -- -- --]\n [0.9383333325386047 0.7250000238418579 0.9616666436195374 ..., -- -- --]\n [0.7516666650772095 0.4749999940395355 0.6050000190734863 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d478fd0>\n2015-05-15T15:05:53Z\ndoing file 2015/05/15/KVWX/KVWX20150515_150922_V06.gz\n[[-- 0.3449999988079071 0.3449999988079071 ..., -- -- --]\n [-- 0.82833331823349 0.6150000095367432 ..., -- -- --]\n [-- 0.8949999809265137 0.8650000095367432 ..., -- -- --]\n ..., \n [-- 0.9016666412353516 0.5683333277702332 ..., -- -- --]\n [-- 0.8583333492279053 0.8416666388511658 ..., -- -- --]\n [-- 0.6150000095367432 0.9049999713897705 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d4a7390>\n2015-05-15T15:09:22Z\ndoing file 2015/05/15/KVWX/KVWX20150515_151251_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- 0.5450000166893005 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.9649999737739563 0.34166666865348816 ..., -- -- --]\n [0.2849999964237213 0.4816666543483734 0.6650000214576721 ..., -- -- --]\n [-- -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d477850>\n2015-05-15T15:12:51Z\ndoing file 2015/05/15/KVWX/KVWX20150515_151620_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.4516666531562805 0.5049999952316284 ..., -- -- --]\n [-- 0.7749999761581421 0.5016666650772095 ..., -- -- --]\n [-- 0.3050000071525574 0.22833333909511566 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d477c90>\n2015-05-15T15:16:20Z\ndoing file 2015/05/15/KVWX/KVWX20150515_151934_V06.gz\n[[0.6783333420753479 0.6616666913032532 0.6549999713897705 ..., -- -- --]\n [0.8583333492279053 0.8416666388511658 0.8583333492279053 ..., -- -- --]\n [0.8983333110809326 0.5350000262260437 0.9649999737739563 ..., -- -- --]\n ..., \n [0.9449999928474426 0.925000011920929 0.878333330154419 ..., -- -- --]\n [0.6183333396911621 0.5216666460037231 0.41499999165534973 ..., -- -- --]\n [0.6050000190734863 0.675000011920929 0.8050000071525574 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d477f10>\n2015-05-15T15:19:34Z\ndoing file 2015/05/15/KVWX/KVWX20150515_152248_V06.gz\n[[0.7916666865348816 -- -- ..., -- -- --]\n [0.824999988079071 -- -- ..., -- -- --]\n [0.2083333283662796 0.3316666781902313 -- ..., -- -- --]\n ..., \n [0.7416666746139526 0.7916666865348816 0.5350000262260437 ..., -- -- --]\n [0.7549999952316284 0.6783333420753479 0.6650000214576721 ..., -- -- --]\n [0.8016666769981384 0.8983333110809326 0.9449999928474426 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10d478950>\n2015-05-15T15:22:48Z\ndoing file 2015/05/15/KVWX/KVWX20150515_152601_V06.gz\n[[0.9649999737739563 0.9483333230018616 0.925000011920929 ..., -- -- --]\n [0.9883333444595337 0.9850000143051147 0.9750000238418579 ..., -- -- --]\n [0.9916666746139526 0.9683333039283752 0.9316666722297668 ..., -- -- --]\n ..., \n [0.7816666960716248 0.8216666579246521 0.8516666889190674 ..., -- -- --]\n [0.9016666412353516 0.8316666483879089 0.7383333444595337 ..., -- -- --]\n [0.7950000166893005 0.7950000166893005 0.7883333563804626 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bcc4990>\n2015-05-15T15:26:01Z\ndoing file 2015/05/15/KVWX/KVWX20150515_152915_V06.gz\n[[-- 0.9316666722297668 0.971666693687439 ..., -- -- --]\n [-- 0.9649999737739563 0.7049999833106995 ..., -- -- --]\n [-- 0.925000011920929 0.9449999928474426 ..., -- -- --]\n ..., \n [0.9783333539962769 0.6850000023841858 0.2083333283662796 ..., -- -- --]\n [0.9616666436195374 0.9183333516120911 0.5083333253860474 ..., -- -- --]\n [0.9616666436195374 0.9783333539962769 0.8583333492279053 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bcc4dd0>\n2015-05-15T15:29:15Z\ndoing file 2015/05/15/KVWX/KVWX20150515_153229_V06.gz\n[[0.5316666960716248 0.5716666579246521 0.6183333396911621 ..., -- -- --]\n [0.29499998688697815 0.4183333218097687 0.3583333194255829 ..., -- -- --]\n [0.925000011920929 0.574999988079071 0.4050000011920929 ..., -- -- --]\n ..., \n [0.9316666722297668 0.6083333492279053 0.9983333349227905 ..., -- -- --]\n [0.8550000190734863 0.6549999713897705 0.9883333444595337 ..., -- -- --]\n [0.9649999737739563 0.9383333325386047 0.7283333539962769 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bcc47d0>\n2015-05-15T15:32:29Z\ndoing file 2015/05/15/KVWX/KVWX20150515_153543_V06.gz\n[[-- 0.24833333492279053 0.5083333253860474 ..., -- -- --]\n [-- 0.46166667342185974 0.7016666531562805 ..., -- -- --]\n [0.6116666793823242 0.6183333396911621 0.621666669845581 ..., -- -- --]\n ..., \n [0.9850000143051147 0.8349999785423279 0.7883333563804626 ..., -- -- --]\n [0.4950000047683716 0.4583333432674408 0.351666659116745 ..., -- -- --]\n [0.48500001430511475 0.6916666626930237 0.7283333539962769 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10e014f50>\n2015-05-15T15:35:43Z\ndoing file 2015/05/15/KVWX/KVWX20150515_153857_V06.gz\n[[0.8550000190734863 0.6316666603088379 0.9383333325386047 ..., -- -- --]\n [0.8016666769981384 0.8450000286102295 0.6850000023841858 ..., -- -- --]\n [0.9850000143051147 0.92166668176651 0.7083333134651184 ..., -- -- --]\n ..., \n [0.7816666960716248 0.9783333539962769 0.9049999713897705 ..., -- -- --]\n [0.8149999976158142 0.7016666531562805 0.5483333468437195 ..., -- -- --]\n [0.8450000286102295 0.22833333909511566 0.8416666388511658 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd80ad0>\n2015-05-15T15:38:57Z\ndoing file 2015/05/15/KVWX/KVWX20150515_154225_V06.gz\n[[0.7350000143051147 0.7950000166893005 0.878333330154419 ..., -- -- --]\n [0.8883333206176758 0.8450000286102295 0.7850000262260437 ..., -- -- --]\n [0.2383333295583725 0.9916666746139526 0.9916666746139526 ..., -- -- --]\n ..., \n [0.7116666436195374 0.7916666865348816 0.7716666460037231 ..., -- -- --]\n [0.57833331823349 0.67166668176651 0.5950000286102295 ..., -- -- --]\n [0.9316666722297668 0.8116666674613953 0.8516666889190674 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd80ed0>\n2015-05-15T15:42:25Z\ndoing file 2015/05/15/KVWX/KVWX20150515_154539_V06.gz\n[[-- 0.8083333373069763 0.9950000047683716 ..., -- -- --]\n [-- 0.9850000143051147 0.7983333468437195 ..., -- -- --]\n [-- 0.6616666913032532 0.8050000071525574 ..., -- -- --]\n ..., \n [0.8349999785423279 0.5049999952316284 0.8849999904632568 ..., -- -- --]\n [0.7283333539962769 0.7083333134651184 0.8849999904632568 ..., -- -- --]\n [-- 0.2083333283662796 0.925000011920929 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd80150>\n2015-05-15T15:45:39Z\ndoing file 2015/05/15/KVWX/KVWX20150515_154853_V06.gz\n[[0.8516666889190674 0.9983333349227905 0.971666693687439 ..., -- -- --]\n [0.8849999904632568 0.9416666626930237 0.6016666889190674 ..., -- -- --]\n [0.7016666531562805 0.4650000035762787 0.6050000190734863 ..., -- -- --]\n ..., \n [0.43166667222976685 0.7649999856948853 0.4483333230018616 ..., -- -- --]\n [0.8683333396911621 0.4183333218097687 0.2083333283662796 ..., -- -- --]\n [0.9549999833106995 0.8516666889190674 0.6483333110809326 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bcc4fd0>\n2015-05-15T15:48:53Z\ndoing file 2015/05/15/KVWX/KVWX20150515_155207_V06.gz\n[[0.6949999928474426 0.8183333277702332 0.6949999928474426 ..., -- -- --]\n [0.82833331823349 0.6150000095367432 -- ..., -- -- --]\n [0.4183333218097687 0.2083333283662796 -- ..., -- -- --]\n ..., \n [0.9950000047683716 0.9950000047683716 0.9950000047683716 ..., -- -- --]\n [0.9916666746139526 0.9950000047683716 0.9950000047683716 ..., -- -- --]\n [0.4183333218097687 0.4283333420753479 0.43166667222976685 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd86c10>\n2015-05-15T15:52:07Z\ndoing file 2015/05/15/KVWX/KVWX20150515_155520_V06.gz\n[[0.9516666531562805 0.8650000095367432 0.7749999761581421 ..., -- -- --]\n [0.92166668176651 0.875 -- ..., -- -- --]\n [0.8816666603088379 0.8650000095367432 -- ..., -- -- --]\n ..., \n [0.9549999833106995 0.8383333086967468 0.2783333361148834 ..., -- -- --]\n [0.9449999928474426 0.9383333325386047 0.9416666626930237 ..., -- -- --]\n [0.9483333230018616 0.9150000214576721 0.8683333396911621 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd86f10>\n2015-05-15T15:55:20Z\ndoing file 2015/05/15/KVWX/KVWX20150515_155835_V06.gz\n[[0.6883333325386047 0.8683333396911621 0.22166666388511658 ..., -- -- --]\n [0.8650000095367432 0.9049999713897705 0.6383333206176758 ..., -- -- --]\n [0.6616666913032532 0.971666693687439 0.7316666841506958 ..., -- -- --]\n ..., \n [0.9783333539962769 0.2083333283662796 0.9483333230018616 ..., -- -- --]\n [0.7616666555404663 0.9116666913032532 0.7749999761581421 ..., -- -- --]\n [0.9183333516120911 0.9549999833106995 0.8050000071525574 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd86990>\n2015-05-15T15:58:35Z\ndoing file 2015/05/15/KVWX/KVWX20150515_160149_V06.gz\n[[0.9750000238418579 0.9516666531562805 0.6616666913032532 ..., -- -- --]\n [0.9350000023841858 0.8849999904632568 0.7816666960716248 ..., -- -- --]\n [0.9316666722297668 0.8916666507720947 0.8183333277702332 ..., -- -- --]\n ..., \n [0.9549999833106995 0.4516666531562805 0.92166668176651 ..., -- -- --]\n [0.8416666388511658 0.824999988079071 0.8050000071525574 ..., -- -- --]\n [0.7616666555404663 0.7116666436195374 0.675000011920929 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd80890>\n2015-05-15T16:01:49Z\ndoing file 2015/05/15/KVWX/KVWX20150515_160503_V06.gz\n[[0.67166668176651 0.9316666722297668 0.34166666865348816 ..., -- -- --]\n [0.5883333086967468 0.9683333039283752 0.9683333039283752 ..., -- -- --]\n [0.8916666507720947 0.7716666460037231 0.7649999856948853 ..., -- -- --]\n ..., \n [0.7683333158493042 0.7749999761581421 0.9016666412353516 ..., -- -- --]\n [0.4883333444595337 0.8050000071525574 0.5216666460037231 ..., -- -- --]\n [0.5616666674613953 0.9649999737739563 0.8416666388511658 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c034d50>\n2015-05-15T16:05:03Z\ndoing file 2015/05/15/KVWX/KVWX20150515_160817_V06.gz\n[[0.8016666769981384 0.5950000286102295 0.5816666483879089 ..., -- -- --]\n [0.9649999737739563 0.9750000238418579 0.871666669845581 ..., -- -- --]\n [0.7649999856948853 0.6949999928474426 0.6516666412353516 ..., -- -- --]\n ..., \n [0.5616666674613953 0.8983333110809326 0.8949999809265137 ..., -- -- --]\n [0.8050000071525574 0.6983333230018616 0.8883333206176758 ..., -- -- --]\n [0.7283333539962769 0.824999988079071 0.7950000166893005 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c034b90>\n2015-05-15T16:08:17Z\ndoing file 2015/05/15/KVWX/KVWX20150515_161131_V06.gz\n[[0.92166668176651 0.9183333516120911 0.9150000214576721 ..., -- -- --]\n [0.8216666579246521 0.82833331823349 0.8349999785423279 ..., -- -- --]\n [0.9950000047683716 0.9916666746139526 0.9916666746139526 ..., -- -- --]\n ..., \n [0.9150000214576721 0.9116666913032532 0.9083333611488342 ..., -- -- --]\n [0.9683333039283752 0.9683333039283752 0.9649999737739563 ..., -- -- --]\n [0.8616666793823242 0.8683333396911621 0.8883333206176758 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c034690>\n2015-05-15T16:11:31Z\ndoing file 2015/05/15/KVWX/KVWX20150515_161444_V06.gz\n[[0.8149999976158142 0.875 -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.8483333587646484 0.9183333516120911 0.5083333253860474 ..., -- -- --]\n [0.878333330154419 0.9083333611488342 0.9016666412353516 ..., -- -- --]\n [0.92166668176651 0.9383333325386047 0.8083333373069763 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd86650>\n2015-05-15T16:14:44Z\ndoing file 2015/05/15/KVWX/KVWX20150515_161757_V06.gz\n[[0.9283333420753479 0.8949999809265137 0.871666669845581 ..., -- -- --]\n [0.39500001072883606 0.6683333516120911 0.398333340883255 ..., -- -- --]\n [0.7116666436195374 0.6416666507720947 0.3216666579246521 ..., -- -- --]\n ..., \n [0.8583333492279053 0.8683333396911621 0.8983333110809326 ..., -- -- --]\n [0.8916666507720947 0.8650000095367432 0.7883333563804626 ..., -- -- --]\n [0.7749999761581421 0.48500001430511475 0.8050000071525574 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf50e50>\n2015-05-15T16:17:57Z\ndoing file 2015/05/15/KVWX/KVWX20150515_162253_V06.gz\n[[-- 0.9383333325386047 0.9116666913032532 ..., -- -- --]\n [-- 0.8183333277702332 0.7149999737739563 ..., -- -- --]\n [-- 0.7616666555404663 0.9183333516120911 ..., -- -- --]\n ..., \n [0.971666693687439 0.6349999904632568 0.9383333325386047 ..., -- -- --]\n [0.9683333039283752 0.871666669845581 0.7983333468437195 ..., -- -- --]\n [-- 0.92166668176651 0.8983333110809326 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf50890>\n2015-05-15T16:22:53Z\ndoing file 2015/05/15/KVWX/KVWX20150515_162750_V06.gz\n[[0.4749999940395355 0.92166668176651 0.4583333432674408 ..., -- -- --]\n [0.8883333206176758 0.9116666913032532 0.4483333230018616 ..., -- -- --]\n [0.9549999833106995 0.9483333230018616 0.925000011920929 ..., -- -- --]\n ..., \n [0.8349999785423279 0.8683333396911621 0.9383333325386047 ..., -- -- --]\n [0.9783333539962769 0.9316666722297668 0.9283333420753479 ..., -- -- --]\n [0.9916666746139526 0.7616666555404663 0.7716666460037231 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf50190>\n2015-05-15T16:27:50Z\ndoing file 2015/05/15/KVWX/KVWX20150515_163246_V06.gz\n[[0.9549999833106995 0.7549999952316284 0.4983333349227905 ..., -- -- --]\n [0.8816666603088379 0.8983333110809326 0.48500001430511475 ..., -- -- --]\n [0.8683333396911621 0.9649999737739563 0.9516666531562805 ..., -- -- --]\n ..., \n [0.9383333325386047 0.9616666436195374 0.8550000190734863 ..., -- -- --]\n [0.8949999809265137 0.8583333492279053 0.8416666388511658 ..., -- -- --]\n [0.8683333396911621 0.9416666626930237 0.9150000214576721 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c034ad0>\n2015-05-15T16:32:46Z\ndoing file 2015/05/15/KVWX/KVWX20150515_163809_V06.gz\n[[0.5016666650772095 0.6783333420753479 0.8983333110809326 ..., -- -- --]\n [-- 0.9049999713897705 0.9783333539962769 ..., -- -- --]\n [-- 0.9850000143051147 0.9350000023841858 ..., -- -- --]\n ..., \n [0.47833332419395447 0.9350000023841858 0.971666693687439 ..., -- -- --]\n [0.7016666531562805 0.8916666507720947 0.8216666579246521 ..., -- -- --]\n [0.4583333432674408 0.9283333420753479 0.7549999952316284 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10df74550>\n2015-05-15T16:38:09Z\ndoing file 2015/05/15/KVWX/KVWX20150515_164306_V06.gz\n[[0.5383333563804626 0.7649999856948853 0.8083333373069763 ..., -- -- --]\n [0.8116666674613953 0.9416666626930237 0.5483333468437195 ..., -- -- --]\n [0.7250000238418579 0.9516666531562805 0.7116666436195374 ..., -- -- --]\n ..., \n [0.9583333134651184 0.9616666436195374 0.925000011920929 ..., -- -- --]\n [0.7350000143051147 0.7816666960716248 0.8650000095367432 ..., -- -- --]\n [0.2083333283662796 0.875 0.7250000238418579 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10df749d0>\n2015-05-15T16:43:06Z\ndoing file 2015/05/15/KVWX/KVWX20150515_164801_V06.gz\n[[0.9350000023841858 0.9416666626930237 0.9583333134651184 ..., -- -- --]\n [0.9049999713897705 0.9150000214576721 0.9383333325386047 ..., -- -- --]\n [0.9549999833106995 0.9516666531562805 0.9516666531562805 ..., -- -- --]\n ..., \n [0.8916666507720947 0.8949999809265137 0.9016666412353516 ..., -- -- --]\n [0.9449999928474426 0.9383333325386047 0.9283333420753479 ..., -- -- --]\n [0.82833331823349 0.8349999785423279 0.8450000286102295 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10df747d0>\n2015-05-15T16:48:01Z\ndoing file 2015/05/15/KVWX/KVWX20150515_165258_V06.gz\n[[0.7983333468437195 0.7950000166893005 0.7950000166893005 ..., -- -- --]\n [0.8583333492279053 0.8416666388511658 0.8183333277702332 ..., -- -- --]\n [0.9116666913032532 0.6650000214576721 0.8916666507720947 ..., -- -- --]\n ..., \n [0.675000011920929 0.9383333325386047 0.8849999904632568 ..., -- -- --]\n [0.7483333349227905 0.7350000143051147 0.7149999737739563 ..., -- -- --]\n [0.9016666412353516 0.8916666507720947 0.8683333396911621 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10df74d90>\n2015-05-15T16:52:58Z\ndoing file 2015/05/15/KVWX/KVWX20150515_165754_V06.gz\n[[0.6116666793823242 0.8383333086967468 0.8483333587646484 ..., -- -- --]\n [0.8316666483879089 0.8883333206176758 0.9383333325386047 ..., -- -- --]\n [0.7250000238418579 0.7583333253860474 0.5983333587646484 ..., -- -- --]\n ..., \n [0.8883333206176758 0.871666669845581 0.8616666793823242 ..., -- -- --]\n [0.6483333110809326 0.6583333611488342 0.9449999928474426 ..., -- -- --]\n [0.8816666603088379 0.9449999928474426 0.8816666603088379 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10df74590>\n2015-05-15T16:57:54Z\ndoing file 2015/05/15/KVWX/KVWX20150515_170316_V06.gz\n[[0.2083333283662796 -- 0.7283333539962769 ..., -- -- --]\n [0.2383333295583725 0.4483333230018616 -- ..., -- -- --]\n [0.7383333444595337 -- -- ..., -- -- --]\n ..., \n [-- -- 0.2983333468437195 ..., -- -- --]\n [-- -- 0.4749999940395355 ..., -- -- --]\n [-- -- 0.9049999713897705 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca73c50>\n2015-05-15T17:03:16Z\ndoing file 2015/05/15/KVWX/KVWX20150515_170840_V06.gz\n[[0.6016666889190674 0.35499998927116394 0.8083333373069763 ..., -- -- --]\n [-- 0.6449999809265137 0.4183333218097687 ..., -- -- --]\n [-- 0.8983333110809326 0.375 ..., -- -- --]\n ..., \n [0.8316666483879089 0.7883333563804626 0.778333306312561 ..., -- -- --]\n [0.9483333230018616 0.9183333516120911 0.8416666388511658 ..., -- -- --]\n [0.9783333539962769 0.9816666841506958 0.8583333492279053 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca73f10>\n2015-05-15T17:08:40Z\ndoing file 2015/05/15/KVWX/KVWX20150515_171428_V06.gz\n[[0.9283333420753479 0.92166668176651 0.9116666913032532 ..., -- -- --]\n [0.9383333325386047 0.8916666507720947 0.8683333396911621 ..., -- -- --]\n [0.9150000214576721 0.8816666603088379 0.6983333230018616 ..., -- -- --]\n ..., \n [0.9483333230018616 0.9316666722297668 0.9083333611488342 ..., -- -- --]\n [0.67166668176651 0.5950000286102295 0.5483333468437195 ..., -- -- --]\n [0.9483333230018616 0.9416666626930237 0.9350000023841858 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10df740d0>\n2015-05-15T17:14:28Z\ndoing file 2015/05/15/KVWX/KVWX20150515_171951_V06.gz\n[[0.6850000023841858 0.9116666913032532 0.8416666388511658 ..., -- -- --]\n [0.8383333086967468 0.8683333396911621 0.8316666483879089 ..., -- -- --]\n [0.8949999809265137 0.8949999809265137 0.4449999928474426 ..., -- -- --]\n ..., \n [0.7250000238418579 0.8016666769981384 0.6083333492279053 ..., -- -- --]\n [0.7683333158493042 0.778333306312561 0.92166668176651 ..., -- -- --]\n [0.9283333420753479 0.9316666722297668 0.925000011920929 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca69310>\n2015-05-15T17:19:51Z\ndoing file 2015/05/15/KVWX/KVWX20150515_172513_V06.gz\n[[0.9583333134651184 0.9549999833106995 -- ..., -- -- --]\n [0.6183333396911621 0.6983333230018616 -- ..., -- -- --]\n [0.9083333611488342 0.8683333396911621 -- ..., -- -- --]\n ..., \n [0.8216666579246521 0.82833331823349 -- ..., -- -- --]\n [0.9283333420753479 0.9316666722297668 -- ..., -- -- --]\n [0.9283333420753479 0.9383333325386047 0.9483333230018616 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca69b10>\n2015-05-15T17:25:13Z\ndoing file 2015/05/15/KVWX/KVWX20150515_173036_V06.gz\n[[0.6683333516120911 0.5550000071525574 0.9683333039283752 ..., -- -- --]\n [0.35499998927116394 0.3316666781902313 0.3149999976158142 ..., -- -- --]\n [0.5249999761581421 0.4583333432674408 0.8483333587646484 ..., -- -- --]\n ..., \n [0.9183333516120911 0.9116666913032532 0.925000011920929 ..., -- -- --]\n [0.9183333516120911 0.8849999904632568 0.9616666436195374 ..., -- -- --]\n [0.7983333468437195 0.9350000023841858 0.9350000023841858 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca69cd0>\n2015-05-15T17:30:36Z\ndoing file 2015/05/15/KVWX/KVWX20150515_173558_V06.gz\n[[0.8216666579246521 0.7716666460037231 0.9616666436195374 ..., -- -- --]\n [0.8683333396911621 0.7649999856948853 0.8450000286102295 ..., -- -- --]\n [0.8616666793823242 0.9016666412353516 0.9283333420753479 ..., -- -- --]\n ..., \n [0.6583333611488342 0.8316666483879089 0.9283333420753479 ..., -- -- --]\n [0.8983333110809326 0.8216666579246521 0.9549999833106995 ..., -- -- --]\n [0.8550000190734863 0.8050000071525574 0.9683333039283752 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c034f50>\n2015-05-15T17:35:58Z\ndoing file 2015/05/15/KVWX/KVWX20150515_174121_V06.gz\n[[0.8183333277702332 0.2083333283662796 0.2083333283662796 ..., -- -- --]\n [0.9016666412353516 0.8616666793823242 0.9016666412353516 ..., -- -- --]\n [0.9783333539962769 0.5916666388511658 0.7383333444595337 ..., -- -- --]\n ..., \n [0.8983333110809326 0.8916666507720947 0.8983333110809326 ..., -- -- --]\n [0.7749999761581421 0.7616666555404663 0.7649999856948853 ..., -- -- --]\n [0.9283333420753479 0.8949999809265137 0.8316666483879089 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca5c450>\n2015-05-15T17:41:21Z\ndoing file 2015/05/15/KVWX/KVWX20150515_174643_V06.gz\n[[0.9683333039283752 0.9516666531562805 0.9616666436195374 ..., -- -- --]\n [0.9783333539962769 0.9883333444595337 0.82833331823349 ..., -- -- --]\n [0.9683333039283752 0.9916666746139526 0.8316666483879089 ..., -- -- --]\n ..., \n [0.9449999928474426 0.8650000095367432 0.7683333158493042 ..., -- -- --]\n [0.8949999809265137 0.7016666531562805 0.9183333516120911 ..., -- -- --]\n [0.8216666579246521 0.9116666913032532 0.8516666889190674 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca5cc50>\n2015-05-15T17:46:43Z\ndoing file 2015/05/15/KVWX/KVWX20150515_175141_V06.gz\n[[0.5550000071525574 -- 0.5683333277702332 ..., -- -- --]\n [0.3050000071525574 -- 0.3050000071525574 ..., -- -- --]\n [0.5983333587646484 0.5149999856948853 0.351666659116745 ..., -- -- --]\n ..., \n [0.8883333206176758 0.8650000095367432 0.721666693687439 ..., -- -- --]\n [0.9783333539962769 0.8650000095367432 0.778333306312561 ..., -- -- --]\n [0.9383333325386047 0.8949999809265137 0.8216666579246521 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca5ce10>\n2015-05-15T17:51:41Z\ndoing file 2015/05/15/KVWX/KVWX20150515_175638_V06.gz\n[[0.8116666674613953 0.8816666603088379 0.8949999809265137 ..., -- -- --]\n [0.8583333492279053 0.8550000190734863 0.7950000166893005 ..., -- -- --]\n [0.9516666531562805 0.7850000262260437 0.9516666531562805 ..., -- -- --]\n ..., \n [0.6616666913032532 0.7383333444595337 0.9016666412353516 ..., -- -- --]\n [0.9083333611488342 0.9283333420753479 0.7716666460037231 ..., -- -- --]\n [0.8183333277702332 0.8116666674613953 0.7549999952316284 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca73dd0>\n2015-05-15T17:56:38Z\ndoing file 2015/05/15/KVWX/KVWX20150515_180136_V06.gz\n[[-- 0.43833333253860474 0.621666669845581 ..., -- -- --]\n [-- 0.9750000238418579 0.7183333039283752 ..., -- -- --]\n [-- 0.9150000214576721 0.2549999952316284 ..., -- -- --]\n ..., \n [0.8383333086967468 0.9016666412353516 0.8383333086967468 ..., -- -- --]\n [0.824999988079071 0.8149999976158142 0.6916666626930237 ..., -- -- --]\n [-- 0.7983333468437195 0.574999988079071 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca68a50>\n2015-05-15T18:01:36Z\ndoing file 2015/05/15/KVWX/KVWX20150515_180632_V06.gz\n[[0.9150000214576721 0.9016666412353516 0.8883333206176758 ..., -- -- --]\n [0.92166668176651 -- 0.875 ..., -- -- --]\n [0.925000011920929 -- 0.9116666913032532 ..., -- -- --]\n ..., \n [0.7716666460037231 0.7716666460037231 0.7716666460037231 ..., -- -- --]\n [0.9850000143051147 0.9816666841506958 0.9783333539962769 ..., -- -- --]\n [0.8983333110809326 0.9116666913032532 0.9316666722297668 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca68cd0>\n2015-05-15T18:06:32Z\ndoing file 2015/05/15/KVWX/KVWX20150515_181129_V06.gz\n[[0.8550000190734863 0.8816666603088379 0.2316666692495346 ..., -- -- --]\n [0.8383333086967468 0.925000011920929 0.9183333516120911 ..., -- -- --]\n [0.628333330154419 0.34166666865348816 0.2083333283662796 ..., -- -- --]\n ..., \n [0.8916666507720947 0.9750000238418579 0.9649999737739563 ..., -- -- --]\n [0.8916666507720947 0.875 0.8983333110809326 ..., -- -- --]\n [0.7850000262260437 0.7183333039283752 0.7416666746139526 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca78d90>\n2015-05-15T18:11:29Z\ndoing file 2015/05/15/KVWX/KVWX20150515_181625_V06.gz\n[[0.878333330154419 0.2083333283662796 0.46166667342185974 ..., -- -- --]\n [0.7850000262260437 0.36500000953674316 0.3683333396911621 ..., -- -- --]\n [0.6449999809265137 0.43166667222976685 0.621666669845581 ..., -- -- --]\n ..., \n [0.9649999737739563 0.7183333039283752 0.8349999785423279 ..., -- -- --]\n [0.8416666388511658 0.92166668176651 0.9583333134651184 ..., -- -- --]\n [0.8816666603088379 0.8883333206176758 0.8483333587646484 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca786d0>\n2015-05-15T18:16:25Z\ndoing file 2015/05/15/KVWX/KVWX20150515_182122_V06.gz\n[[0.9616666436195374 0.9483333230018616 0.9383333325386047 ..., -- -- --]\n [0.7616666555404663 0.7516666650772095 0.7416666746139526 ..., -- -- --]\n [0.9583333134651184 0.9649999737739563 0.9583333134651184 ..., -- -- --]\n ..., \n [0.9483333230018616 0.7483333349227905 0.7916666865348816 ..., -- -- --]\n [0.9316666722297668 0.9283333420753479 0.9350000023841858 ..., -- -- --]\n [0.8583333492279053 0.8483333587646484 0.8416666388511658 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca78f90>\n2015-05-15T18:21:22Z\ndoing file 2015/05/15/KVWX/KVWX20150515_182645_V06.gz\n[[-- 0.8383333086967468 0.9116666913032532 ..., -- -- --]\n [-- 0.9583333134651184 0.8816666603088379 ..., -- -- --]\n [0.9016666412353516 0.8650000095367432 0.6183333396911621 ..., -- -- --]\n ..., \n [0.878333330154419 0.878333330154419 0.878333330154419 ..., -- -- --]\n [0.875 0.8949999809265137 0.9049999713897705 ..., -- -- --]\n [0.7416666746139526 0.7716666460037231 0.824999988079071 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca6fa90>\n2015-05-15T18:26:45Z\ndoing file 2015/05/15/KVWX/KVWX20150515_183141_V06.gz\n[[0.574999988079071 0.6383333206176758 0.8550000190734863 ..., -- -- --]\n [0.8983333110809326 0.6416666507720947 0.4883333444595337 ..., -- -- --]\n [0.875 0.6116666793823242 0.2983333468437195 ..., -- -- --]\n ..., \n [0.628333330154419 0.5916666388511658 0.5583333373069763 ..., -- -- --]\n [0.8349999785423279 0.8450000286102295 0.8116666674613953 ..., -- -- --]\n [0.8083333373069763 0.7649999856948853 0.6549999713897705 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca6fe90>\n2015-05-15T18:31:41Z\ndoing file 2015/05/15/KVWX/KVWX20150515_183640_V06.gz\n[[0.8483333587646484 0.9583333134651184 0.92166668176651 ..., -- -- --]\n [0.375 0.9616666436195374 0.9916666746139526 ..., -- -- --]\n [0.7250000238418579 0.9350000023841858 0.9549999833106995 ..., -- -- --]\n ..., \n [0.9449999928474426 0.9483333230018616 0.8983333110809326 ..., -- -- --]\n [0.6916666626930237 0.9549999833106995 0.9183333516120911 ..., -- -- --]\n [0.8550000190734863 0.9316666722297668 0.9383333325386047 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca6fcd0>\n2015-05-15T18:36:40Z\ndoing file 2015/05/15/KVWX/KVWX20150515_184203_V06.gz\n[[0.9816666841506958 0.9883333444595337 0.9916666746139526 ..., -- -- --]\n [0.8949999809265137 0.9350000023841858 0.8983333110809326 ..., -- -- --]\n [0.675000011920929 0.5683333277702332 0.9649999737739563 ..., -- -- --]\n ..., \n [0.5216666460037231 0.8216666579246521 0.824999988079071 ..., -- -- --]\n [0.6650000214576721 0.4883333444595337 0.8883333206176758 ..., -- -- --]\n [0.6183333396911621 0.6850000023841858 0.8450000286102295 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca78b10>\n2015-05-15T18:42:03Z\ndoing file 2015/05/15/KVWX/KVWX20150515_184659_V06.gz\n[[0.9649999737739563 0.9616666436195374 0.9616666436195374 ..., -- -- --]\n [0.971666693687439 0.9583333134651184 0.9416666626930237 ..., -- -- --]\n [0.8483333587646484 0.8416666388511658 0.8416666388511658 ..., -- -- --]\n ..., \n [0.9816666841506958 0.8316666483879089 0.9383333325386047 ..., -- -- --]\n [0.9583333134651184 0.6150000095367432 0.8550000190734863 ..., -- -- --]\n [0.9483333230018616 0.9283333420753479 0.9049999713897705 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca92bd0>\n2015-05-15T18:46:59Z\ndoing file 2015/05/15/KVWX/KVWX20150515_185222_V06.gz\n[[-- 0.9116666913032532 0.925000011920929 ..., -- -- --]\n [-- 0.824999988079071 0.9516666531562805 ..., -- -- --]\n [-- 0.7183333039283752 0.8816666603088379 ..., -- -- --]\n ..., \n [-- 0.8050000071525574 0.9750000238418579 ..., -- -- --]\n [-- 0.9116666913032532 0.9150000214576721 ..., -- -- --]\n [-- 0.6983333230018616 0.7016666531562805 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca92510>\n2015-05-15T18:52:22Z\ndoing file 2015/05/15/KVWX/KVWX20150515_185746_V06.gz\n[[0.9016666412353516 0.8883333206176758 0.9883333444595337 ..., -- -- --]\n [0.8650000095367432 0.8450000286102295 0.3583333194255829 ..., -- -- --]\n [0.9549999833106995 0.9683333039283752 0.7416666746139526 ..., -- -- --]\n ..., \n [0.8383333086967468 0.5149999856948853 0.9783333539962769 ..., -- -- --]\n [0.8583333492279053 0.7850000262260437 0.6150000095367432 ..., -- -- --]\n [0.8583333492279053 0.9183333516120911 0.6516666412353516 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca92dd0>\n2015-05-15T18:57:46Z\ndoing file 2015/05/15/KVWX/KVWX20150515_190308_V06.gz\n[[0.9583333134651184 0.824999988079071 0.6916666626930237 ..., -- -- --]\n [0.9183333516120911 0.925000011920929 0.22166666388511658 ..., -- -- --]\n [0.9283333420753479 0.9350000023841858 0.5483333468437195 ..., -- -- --]\n ..., \n [0.8583333492279053 0.8583333492279053 0.8983333110809326 ..., -- -- --]\n [0.9316666722297668 0.8683333396911621 0.8849999904632568 ..., -- -- --]\n [0.8916666507720947 0.9183333516120911 0.8416666388511658 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca78f50>\n2015-05-15T19:03:08Z\ndoing file 2015/05/15/KVWX/KVWX20150515_190831_V06.gz\n[[-- 0.4183333218097687 0.8849999904632568 ..., -- -- --]\n [-- 0.9150000214576721 0.9183333516120911 ..., -- -- --]\n [-- 0.40166667103767395 0.4116666615009308 ..., -- -- --]\n ..., \n [-- 0.628333330154419 0.2083333283662796 ..., -- -- --]\n [0.721666693687439 0.7116666436195374 0.7049999833106995 ..., -- -- --]\n [-- 0.8616666793823242 0.7516666650772095 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca8fd10>\n2015-05-15T19:08:31Z\ndoing file 2015/05/15/KVWX/KVWX20150515_191353_V06.gz\n[[0.9983333349227905 -- -- ..., -- -- --]\n [0.9816666841506958 0.9750000238418579 -- ..., -- -- --]\n [0.8316666483879089 0.8216666579246521 -- ..., -- -- --]\n ..., \n [0.9750000238418579 0.9549999833106995 0.92166668176651 ..., -- -- --]\n [0.92166668176651 0.8949999809265137 0.8883333206176758 ..., -- -- --]\n [0.6516666412353516 0.6050000190734863 0.7716666460037231 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca8ff90>\n2015-05-15T19:13:53Z\ndoing file 2015/05/15/KVWX/KVWX20150515_191849_V06.gz\n[[0.628333330154419 0.5249999761581421 0.7183333039283752 ..., -- -- --]\n [0.9049999713897705 0.6016666889190674 0.7049999833106995 ..., -- -- --]\n [0.5350000262260437 0.5616666674613953 0.6116666793823242 ..., -- -- --]\n ..., \n [0.9816666841506958 0.9083333611488342 0.8450000286102295 ..., -- -- --]\n [0.721666693687439 0.9783333539962769 0.7350000143051147 ..., -- -- --]\n [0.8316666483879089 0.6983333230018616 0.9483333230018616 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca8f790>\n2015-05-15T19:18:49Z\ndoing file 2015/05/15/KVWX/KVWX20150515_192344_V06.gz\n[[-- 0.8216666579246521 0.8416666388511658 ..., -- -- --]\n [-- 0.9283333420753479 0.9150000214576721 ..., -- -- --]\n [0.8316666483879089 0.8383333086967468 0.8450000286102295 ..., -- -- --]\n ..., \n [-- 0.9316666722297668 0.9616666436195374 ..., -- -- --]\n [0.8949999809265137 0.9150000214576721 0.9283333420753479 ..., -- -- --]\n [0.9383333325386047 0.9316666722297668 0.9516666531562805 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca92610>\n2015-05-15T19:23:44Z\ndoing file 2015/05/15/KVWX/KVWX20150515_192910_V06.gz\n[[0.7583333253860474 0.8683333396911621 0.8083333373069763 ..., -- -- --]\n [0.9049999713897705 0.7549999952316284 0.6549999713897705 ..., -- -- --]\n [0.8816666603088379 0.7916666865348816 0.6050000190734863 ..., -- -- --]\n ..., \n [0.7816666960716248 0.7749999761581421 0.7649999856948853 ..., -- -- --]\n [0.7016666531562805 0.6183333396911621 0.4983333349227905 ..., -- -- --]\n [0.6449999809265137 0.7116666436195374 0.4883333444595337 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c6e0e50>\n2015-05-15T19:29:10Z\ndoing file 2015/05/15/KVWX/KVWX20150515_193407_V06.gz\n[[-- 0.45500001311302185 0.7616666555404663 ..., -- -- --]\n [-- 0.4116666615009308 0.5083333253860474 ..., -- -- --]\n [-- 0.36500000953674316 0.39500001072883606 ..., -- -- --]\n ..., \n [-- 0.6816666722297668 0.67166668176651 ..., -- -- --]\n [-- 0.8116666674613953 0.9483333230018616 ..., -- -- --]\n [-- 0.9083333611488342 0.67166668176651 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c6e0550>\n2015-05-15T19:34:07Z\ndoing file 2015/05/15/KVWX/KVWX20150515_193904_V06.gz\n[[-- 0.6883333325386047 0.2083333283662796 ..., -- -- --]\n [-- 0.6850000023841858 0.4816666543483734 ..., -- -- --]\n [-- 0.6183333396911621 0.6949999928474426 ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c6e0490>\n2015-05-15T19:39:04Z\ndoing file 2015/05/15/KVWX/KVWX20150515_194401_V06.gz\n[[0.9016666412353516 0.9016666412353516 0.9016666412353516 ..., -- -- --]\n [0.92166668176651 0.92166668176651 0.92166668176651 ..., -- -- --]\n [0.8616666793823242 0.871666669845581 0.8849999904632568 ..., -- -- --]\n ..., \n [0.9616666436195374 0.9283333420753479 0.9016666412353516 ..., -- -- --]\n [0.9683333039283752 0.9350000023841858 0.8983333110809326 ..., -- -- --]\n [0.8516666889190674 0.8483333587646484 0.8683333396911621 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10ca8fa90>\n2015-05-15T19:44:01Z\ndoing file 2015/05/15/KVWX/KVWX20150515_194923_V06.gz\n[[0.625 0.351666659116745 0.5583333373069763 ..., -- -- --]\n [0.8349999785423279 0.3283333480358124 0.3616666793823242 ..., -- -- --]\n [0.8416666388511658 0.8349999785423279 0.8183333277702332 ..., -- -- --]\n ..., \n [0.8450000286102295 0.8650000095367432 0.9049999713897705 ..., -- -- --]\n [0.9183333516120911 0.9283333420753479 0.9416666626930237 ..., -- -- --]\n [0.8849999904632568 0.8849999904632568 0.9049999713897705 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf52f50>\n2015-05-15T19:49:23Z\ndoing file 2015/05/15/KVWX/KVWX20150515_195445_V06.gz\n[[0.9516666531562805 0.7149999737739563 0.3583333194255829 ..., -- -- --]\n [0.8116666674613953 0.9783333539962769 0.3916666805744171 ..., -- -- --]\n [0.7350000143051147 0.9350000023841858 0.6816666722297668 ..., -- -- --]\n ..., \n [0.8949999809265137 0.878333330154419 0.875 ..., -- -- --]\n [0.7149999737739563 0.7350000143051147 0.7916666865348816 ..., -- -- --]\n [0.9350000023841858 0.7083333134651184 0.6983333230018616 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf52990>\n2015-05-15T19:54:45Z\ndoing file 2015/05/15/KVWX/KVWX20150515_200035_V06.gz\n[[0.8516666889190674 0.925000011920929 0.9116666913032532 ..., -- -- --]\n [0.9083333611488342 0.9416666626930237 0.9383333325386047 ..., -- -- --]\n [0.9383333325386047 0.6816666722297668 0.8483333587646484 ..., -- -- --]\n ..., \n [0.9683333039283752 0.9483333230018616 0.9383333325386047 ..., -- -- --]\n [0.9750000238418579 0.971666693687439 0.9649999737739563 ..., -- -- --]\n [0.925000011920929 0.8949999809265137 0.8883333206176758 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf52550>\n2015-05-15T20:00:35Z\ndoing file 2015/05/15/KVWX/KVWX20150515_200557_V06.gz\n[[0.6116666793823242 0.574999988079071 0.5383333563804626 ..., -- -- --]\n [0.871666669845581 -- 0.8516666889190674 ..., -- -- --]\n [0.721666693687439 0.6616666913032532 0.9750000238418579 ..., -- -- --]\n ..., \n [0.8016666769981384 0.7250000238418579 0.5883333086967468 ..., -- -- --]\n [0.8316666483879089 0.8916666507720947 0.6983333230018616 ..., -- -- --]\n [0.9316666722297668 0.9649999737739563 0.8183333277702332 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10c6e0c50>\n2015-05-15T20:05:57Z\ndoing file 2015/05/15/KVWX/KVWX20150515_201146_V06.gz\n[[0.7516666650772095 0.871666669845581 0.8083333373069763 ..., -- -- --]\n [0.9083333611488342 0.9283333420753479 0.871666669845581 ..., -- -- --]\n [0.8450000286102295 0.8883333206176758 0.7683333158493042 ..., -- -- --]\n ..., \n [0.7516666650772095 0.8416666388511658 0.8916666507720947 ..., -- -- --]\n [0.92166668176651 0.92166668176651 0.9549999833106995 ..., -- -- --]\n [0.92166668176651 0.9283333420753479 0.8616666793823242 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf69f10>\n2015-05-15T20:11:46Z\ndoing file 2015/05/15/KVWX/KVWX20150515_201735_V06.gz\n[[0.8949999809265137 0.9783333539962769 0.6850000023841858 ..., -- -- --]\n [0.7549999952316284 0.8550000190734863 0.9116666913032532 ..., -- -- --]\n [0.7350000143051147 0.8016666769981384 0.8416666388511658 ..., -- -- --]\n ..., \n [0.7883333563804626 0.9549999833106995 0.9649999737739563 ..., -- -- --]\n [0.878333330154419 0.9449999928474426 0.9750000238418579 ..., -- -- --]\n [0.9616666436195374 0.9983333349227905 0.9683333039283752 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf691d0>\n2015-05-15T20:17:35Z\ndoing file 2015/05/15/KVWX/KVWX20150515_202326_V06.gz\n[[0.5683333277702332 0.574999988079071 0.2083333283662796 ..., -- -- --]\n [-- 0.5950000286102295 0.8450000286102295 ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [-- 0.675000011920929 0.6949999928474426 ..., -- -- --]\n [-- 0.9383333325386047 0.7649999856948853 ..., -- -- --]\n [-- 0.3449999988079071 0.34166666865348816 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf69b50>\n2015-05-15T20:23:26Z\ndoing file 2015/05/15/KVWX/KVWX20150515_202916_V06.gz\n[[-- 0.6449999809265137 0.8383333086967468 ..., -- -- --]\n [-- 0.7716666460037231 0.7749999761581421 ..., -- -- --]\n [-- 0.8550000190734863 0.8616666793823242 ..., -- -- --]\n ..., \n [-- 0.925000011920929 0.9616666436195374 ..., -- -- --]\n [0.925000011920929 0.9016666412353516 0.878333330154419 ..., -- -- --]\n [0.8149999976158142 0.7916666865348816 0.8383333086967468 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf52790>\n2015-05-15T20:29:16Z\ndoing file 2015/05/15/KVWX/KVWX20150515_203505_V06.gz\n[[0.9516666531562805 0.9483333230018616 0.7149999737739563 ..., -- -- --]\n [0.9449999928474426 0.8416666388511658 0.875 ..., -- -- --]\n [0.7850000262260437 0.9316666722297668 0.9016666412353516 ..., -- -- --]\n ..., \n [0.8883333206176758 0.8483333587646484 0.9316666722297668 ..., -- -- --]\n [0.8050000071525574 0.9383333325386047 0.875 ..., -- -- --]\n [0.6783333420753479 0.971666693687439 0.9383333325386047 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf72b50>\n2015-05-15T20:35:05Z\ndoing file 2015/05/15/KVWX/KVWX20150515_204055_V06.gz\n[[0.8816666603088379 0.9183333516120911 0.9449999928474426 ..., -- -- --]\n [0.9049999713897705 0.8916666507720947 0.6916666626930237 ..., -- -- --]\n [0.9883333444595337 0.8349999785423279 0.7649999856948853 ..., -- -- --]\n ..., \n [0.9816666841506958 0.9583333134651184 0.8983333110809326 ..., -- -- --]\n [0.9316666722297668 0.9383333325386047 0.925000011920929 ..., -- -- --]\n [0.4116666615009308 0.9883333444595337 0.7350000143051147 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf72ad0>\n2015-05-15T20:40:55Z\ndoing file 2015/05/15/KVWX/KVWX20150515_204850_V06.gz\n[[0.7383333444595337 0.6883333325386047 0.4816666543483734 ..., -- -- --]\n [0.7483333349227905 0.9983333349227905 0.9283333420753479 ..., -- -- --]\n [0.824999988079071 0.8450000286102295 0.8683333396911621 ..., -- -- --]\n ..., \n [0.6383333206176758 0.6583333611488342 0.7016666531562805 ..., -- -- --]\n [0.824999988079071 0.8316666483879089 0.8483333587646484 ..., -- -- --]\n [0.9150000214576721 0.8683333396911621 0.7749999761581421 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf72bd0>\n2015-05-15T20:48:50Z\ndoing file 2015/05/15/KVWX/KVWX20150515_205439_V06.gz\n[[-- -- 0.4950000047683716 ..., -- -- --]\n [-- -- 0.4583333432674408 ..., -- -- --]\n [-- 0.6150000095367432 0.6150000095367432 ..., -- -- --]\n ..., \n [0.8183333277702332 -- 0.9083333611488342 ..., -- -- --]\n [0.8349999785423279 -- 0.8349999785423279 ..., -- -- --]\n [-- -- 0.57833331823349 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf69610>\n2015-05-15T20:54:39Z\ndoing file 2015/05/15/KVWX/KVWX20150515_210030_V06.gz\n[[0.6150000095367432 0.4416666626930237 0.9583333134651184 ..., -- -- --]\n [0.2083333283662796 0.7149999737739563 0.7316666841506958 ..., -- -- --]\n [0.2083333283662796 0.2083333283662796 0.3616666793823242 ..., -- -- --]\n ..., \n [0.9350000023841858 0.9449999928474426 0.875 ..., -- -- --]\n [0.7850000262260437 0.8883333206176758 0.9083333611488342 ..., -- -- --]\n [0.8550000190734863 0.8349999785423279 0.8916666507720947 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf78410>\n2015-05-15T21:00:30Z\ndoing file 2015/05/15/KVWX/KVWX20150515_210619_V06.gz\n[[0.2616666555404663 0.2849999964237213 0.31166666746139526 ..., -- -- --]\n [-- 0.8450000286102295 0.6349999904632568 ..., -- -- --]\n [-- 0.8650000095367432 0.8316666483879089 ..., -- -- --]\n ..., \n [0.7749999761581421 0.7250000238418579 0.8616666793823242 ..., -- -- --]\n [-- 0.8949999809265137 0.5883333086967468 ..., -- -- --]\n [0.7716666460037231 0.9116666913032532 0.625 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf78c10>\n2015-05-15T21:06:19Z\ndoing file 2015/05/15/KVWX/KVWX20150515_211208_V06.gz\n[[0.9950000047683716 0.9950000047683716 0.9983333349227905 ..., -- -- --]\n [0.9916666746139526 0.9950000047683716 0.9983333349227905 ..., -- -- --]\n [0.9983333349227905 0.9983333349227905 0.9916666746139526 ..., -- -- --]\n ..., \n [0.9883333444595337 0.9983333349227905 0.9950000047683716 ..., -- -- --]\n [0.9916666746139526 0.9983333349227905 0.9950000047683716 ..., -- -- --]\n [0.9916666746139526 0.9950000047683716 0.9983333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf78cd0>\n2015-05-15T21:12:08Z\ndoing file 2015/05/15/KVWX/KVWX20150515_211759_V06.gz\n[[0.9850000143051147 0.9750000238418579 0.9683333039283752 ..., -- -- --]\n [0.9983333349227905 0.9983333349227905 0.9983333349227905 ..., -- -- --]\n [0.9916666746139526 0.9916666746139526 0.9916666746139526 ..., -- -- --]\n ..., \n [0.8983333110809326 0.925000011920929 0.9383333325386047 ..., -- -- --]\n [0.92166668176651 0.8916666507720947 0.875 ..., -- -- --]\n [0.824999988079071 0.8016666769981384 0.8116666674613953 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf52d90>\n2015-05-15T21:17:59Z\ndoing file 2015/05/15/KVWX/KVWX20150515_212348_V06.gz\n[[0.925000011920929 0.9750000238418579 0.9049999713897705 ..., -- -- --]\n [0.9616666436195374 0.7850000262260437 0.7850000262260437 ..., -- -- --]\n [0.9283333420753479 0.875 0.8450000286102295 ..., -- -- --]\n ..., \n [0.4116666615009308 0.8883333206176758 0.925000011920929 ..., -- -- --]\n [0.8483333587646484 0.9150000214576721 0.9616666436195374 ..., -- -- --]\n [0.8583333492279053 0.7450000047683716 0.9449999928474426 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf5f550>\n2015-05-15T21:23:48Z\ndoing file 2015/05/15/KVWX/KVWX20150515_212938_V06.gz\n[[-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n ..., \n [0.2083333283662796 0.2083333283662796 0.3816666603088379 ..., -- -- --]\n [0.7116666436195374 0.628333330154419 0.528333306312561 ..., -- -- --]\n [-- 0.875 0.9350000023841858 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf5f190>\n2015-05-15T21:29:38Z\ndoing file 2015/05/15/KVWX/KVWX20150515_213432_V06.gz\n[[0.971666693687439 0.8416666388511658 0.8416666388511658 ..., -- -- --]\n [0.92166668176651 0.971666693687439 0.9049999713897705 ..., -- -- --]\n [0.9483333230018616 0.778333306312561 0.6616666913032532 ..., -- -- --]\n ..., \n [0.8916666507720947 0.8516666889190674 0.8650000095367432 ..., -- -- --]\n [0.9516666531562805 0.925000011920929 0.4283333420753479 ..., -- -- --]\n [0.9883333444595337 0.7316666841506958 0.9616666436195374 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf78a50>\n2015-05-15T21:34:32Z\ndoing file 2015/05/15/KVWX/KVWX20150515_213926_V06.gz\n[[0.9883333444595337 0.9883333444595337 0.5450000166893005 ..., -- -- --]\n [0.7149999737739563 0.8050000071525574 -- ..., -- -- --]\n [0.32499998807907104 0.628333330154419 0.5983333587646484 ..., -- -- --]\n ..., \n [0.3616666793823242 0.3683333396911621 0.3683333396911621 ..., -- -- --]\n [0.4950000047683716 0.6949999928474426 0.8816666603088379 ..., -- -- --]\n [0.2083333283662796 0.9150000214576721 0.40166667103767395 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf79990>\n2015-05-15T21:39:26Z\ndoing file 2015/05/15/KVWX/KVWX20150515_214418_V06.gz\n[[0.7416666746139526 0.8116666674613953 0.8149999976158142 ..., -- -- --]\n [0.6316666603088379 0.6083333492279053 0.5683333277702332 ..., -- -- --]\n [0.34833332896232605 0.8349999785423279 0.9916666746139526 ..., -- -- --]\n ..., \n [0.6916666626930237 0.6349999904632568 0.6416666507720947 ..., -- -- --]\n [0.7250000238418579 0.8183333277702332 0.9516666531562805 ..., -- -- --]\n [0.7683333158493042 0.9750000238418579 0.7483333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf79750>\n2015-05-15T21:44:18Z\ndoing file 2015/05/15/KVWX/KVWX20150515_214911_V06.gz\n[[0.8849999904632568 1.0016666650772095 0.675000011920929 ..., -- -- --]\n [0.4950000047683716 0.9683333039283752 0.8083333373069763 ..., -- -- --]\n [0.6050000190734863 0.9516666531562805 0.9116666913032532 ..., -- -- --]\n ..., \n [0.2083333283662796 0.9016666412353516 0.8849999904632568 ..., -- -- --]\n [0.7383333444595337 0.9083333611488342 0.9016666412353516 ..., -- -- --]\n [0.40166667103767395 0.9649999737739563 0.9516666531562805 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf5fd50>\n2015-05-15T21:49:11Z\ndoing file 2015/05/15/KVWX/KVWX20150515_215405_V06.gz\n[[0.9583333134651184 0.9983333349227905 0.8616666793823242 ..., -- -- --]\n [0.6549999713897705 0.6516666412353516 0.6816666722297668 ..., -- -- --]\n [0.9449999928474426 0.9449999928474426 0.9449999928474426 ..., -- -- --]\n ..., \n [0.7950000166893005 0.9916666746139526 0.7450000047683716 ..., -- -- --]\n [0.8916666507720947 0.9150000214576721 0.9683333039283752 ..., -- -- --]\n [0.8216666579246521 0.9150000214576721 0.9983333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf47690>\n2015-05-15T21:54:05Z\ndoing file 2015/05/15/KVWX/KVWX20150515_215858_V06.gz\n[[-- 0.2383333295583725 0.7549999952316284 ..., -- -- --]\n [-- 0.5149999856948853 0.6316666603088379 ..., -- -- --]\n [-- 0.7516666650772095 0.7516666650772095 ..., -- -- --]\n ..., \n [-- 0.5483333468437195 0.9683333039283752 ..., -- -- --]\n [0.2083333283662796 0.5383333563804626 0.9183333516120911 ..., -- -- --]\n [0.5916666388511658 0.5950000286102295 0.9049999713897705 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf78050>\n2015-05-15T21:58:58Z\ndoing file 2015/05/15/KVWX/KVWX20150515_220351_V06.gz\n[[0.9049999713897705 0.875 0.8316666483879089 ..., -- -- --]\n [0.6650000214576721 0.6416666507720947 0.6616666913032532 ..., -- -- --]\n [0.9350000023841858 0.9850000143051147 0.9549999833106995 ..., -- -- --]\n ..., \n [0.39500001072883606 0.40166667103767395 0.4650000035762787 ..., -- -- --]\n [0.4749999940395355 0.48500001430511475 0.5149999856948853 ..., -- -- --]\n [0.8083333373069763 0.7883333563804626 0.7516666650772095 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf47cd0>\n2015-05-15T22:03:51Z\ndoing file 2015/05/15/KVWX/KVWX20150515_220844_V06.gz\n[[-- 0.5683333277702332 0.8416666388511658 ..., -- -- --]\n [-- 0.9649999737739563 0.971666693687439 ..., -- -- --]\n [-- 0.6083333492279053 0.6083333492279053 ..., -- -- --]\n ..., \n [0.8949999809265137 0.9183333516120911 0.9616666436195374 ..., -- -- --]\n [0.5450000166893005 0.5950000286102295 0.5550000071525574 ..., -- -- --]\n [-- 0.721666693687439 0.7250000238418579 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf47d50>\n2015-05-15T22:08:44Z\ndoing file 2015/05/15/KVWX/KVWX20150515_221337_V06.gz\n[[0.67166668176651 -- 0.8316666483879089 ..., -- -- --]\n [0.675000011920929 -- 0.8149999976158142 ..., -- -- --]\n [0.8316666483879089 -- 0.9016666412353516 ..., -- -- --]\n ..., \n [0.5983333587646484 0.675000011920929 0.7950000166893005 ..., -- -- --]\n [0.7416666746139526 0.7383333444595337 0.7883333563804626 ..., -- -- --]\n [0.92166668176651 -- 0.8583333492279053 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bdb4e90>\n2015-05-15T22:13:37Z\ndoing file 2015/05/15/KVWX/KVWX20150515_221829_V06.gz\n[[0.2083333283662796 0.9549999833106995 0.8816666603088379 ..., -- -- --]\n [0.5649999976158142 0.871666669845581 0.7649999856948853 ..., -- -- --]\n [0.41499999165534973 0.625 0.8416666388511658 ..., -- -- --]\n ..., \n [0.5383333563804626 0.8083333373069763 0.6883333325386047 ..., -- -- --]\n [0.6783333420753479 0.8650000095367432 0.9850000143051147 ..., -- -- --]\n [0.43833333253860474 0.9649999737739563 0.7850000262260437 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf796d0>\n2015-05-15T22:18:29Z\ndoing file 2015/05/15/KVWX/KVWX20150515_222323_V06.gz\n[[0.9516666531562805 0.4516666531562805 0.9816666841506958 ..., -- -- --]\n [0.9683333039283752 0.7749999761581421 0.49166667461395264 ..., -- -- --]\n [0.871666669845581 0.4716666638851166 0.7649999856948853 ..., -- -- --]\n ..., \n [0.8016666769981384 0.871666669845581 0.6949999928474426 ..., -- -- --]\n [0.925000011920929 0.6983333230018616 0.5516666769981384 ..., -- -- --]\n [0.7983333468437195 0.8916666507720947 0.9616666436195374 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bdb44d0>\n2015-05-15T22:23:23Z\ndoing file 2015/05/15/KVWX/KVWX20150515_222819_V06.gz\n[[0.9916666746139526 0.9649999737739563 0.3050000071525574 ..., -- -- --]\n [0.5683333277702332 0.6916666626930237 0.41499999165534973 ..., -- -- --]\n [0.8583333492279053 0.398333340883255 0.40166667103767395 ..., -- -- --]\n ..., \n [0.8149999976158142 0.8149999976158142 0.8216666579246521 ..., -- -- --]\n [0.8916666507720947 0.8650000095367432 0.6983333230018616 ..., -- -- --]\n [0.871666669845581 0.7250000238418579 0.82833331823349 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bdb4850>\n2015-05-15T22:28:19Z\ndoing file 2015/05/15/KVWX/KVWX20150515_223311_V06.gz\n[[0.7549999952316284 0.9449999928474426 0.9549999833106995 ..., -- -- --]\n [0.9583333134651184 0.8616666793823242 0.9150000214576721 ..., -- -- --]\n [0.9549999833106995 0.9383333325386047 0.7149999737739563 ..., -- -- --]\n ..., \n [0.9549999833106995 0.925000011920929 0.8816666603088379 ..., -- -- --]\n [0.8050000071525574 0.7916666865348816 0.7749999761581421 ..., -- -- --]\n [0.8816666603088379 0.8616666793823242 0.82833331823349 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bda0650>\n2015-05-15T22:33:11Z\ndoing file 2015/05/15/KVWX/KVWX20150515_223804_V06.gz\n[[0.5316666960716248 0.4749999940395355 0.4716666638851166 ..., -- -- --]\n [0.8916666507720947 0.8550000190734863 0.8016666769981384 ..., -- -- --]\n [0.9083333611488342 0.8816666603088379 0.9516666531562805 ..., -- -- --]\n ..., \n [0.875 0.8650000095367432 0.8816666603088379 ..., -- -- --]\n [0.8949999809265137 0.8316666483879089 0.5450000166893005 ..., -- -- --]\n [0.9516666531562805 0.9383333325386047 0.9483333230018616 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bda0b10>\n2015-05-15T22:38:04Z\ndoing file 2015/05/15/KVWX/KVWX20150515_224256_V06.gz\n[[0.9983333349227905 0.9983333349227905 0.6516666412353516 ..., -- -- --]\n [0.9683333039283752 0.9683333039283752 0.9683333039283752 ..., -- -- --]\n [0.43166667222976685 0.8483333587646484 0.8916666507720947 ..., -- -- --]\n ..., \n [0.6650000214576721 0.6650000214576721 0.6650000214576721 ..., -- -- --]\n [0.9549999833106995 0.9150000214576721 0.8916666507720947 ..., -- -- --]\n [0.5550000071525574 0.8450000286102295 0.3883333206176758 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bdb4f10>\n2015-05-15T22:42:56Z\ndoing file 2015/05/15/KVWX/KVWX20150515_224749_V06.gz\n[[0.9783333539962769 0.971666693687439 0.9549999833106995 ..., -- -- --]\n [0.7316666841506958 0.7483333349227905 0.8149999976158142 ..., -- -- --]\n [0.40833333134651184 0.351666659116745 0.7716666460037231 ..., -- -- --]\n ..., \n [0.4950000047683716 -- 0.574999988079071 ..., -- -- --]\n [0.43166667222976685 -- 0.7016666531562805 ..., -- -- --]\n [0.8450000286102295 -- 0.528333306312561 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd81dd0>\n2015-05-15T22:47:49Z\ndoing file 2015/05/15/KVWX/KVWX20150515_225242_V06.gz\n[[0.871666669845581 0.8650000095367432 0.8983333110809326 ..., -- -- --]\n [0.9883333444595337 0.7583333253860474 0.7450000047683716 ..., -- -- --]\n [0.8816666603088379 0.7183333039283752 0.6083333492279053 ..., -- -- --]\n ..., \n [0.8816666603088379 0.82833331823349 0.7649999856948853 ..., -- -- --]\n [0.9816666841506958 0.7383333444595337 0.8483333587646484 ..., -- -- --]\n [0.875 0.9983333349227905 0.9983333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bdb4f10>\n2015-05-15T22:52:42Z\ndoing file 2015/05/15/KVWX/KVWX20150515_225735_V06.gz\n[[0.9950000047683716 0.9483333230018616 0.8983333110809326 ..., -- -- --]\n [0.22833333909511566 0.33500000834465027 0.4116666615009308 ..., -- -- --]\n [0.8983333110809326 0.8416666388511658 0.9016666412353516 ..., -- -- --]\n ..., \n [0.9516666531562805 0.7250000238418579 0.4583333432674408 ..., -- -- --]\n [0.7316666841506958 0.5450000166893005 0.7816666960716248 ..., -- -- --]\n [0.8550000190734863 0.9616666436195374 0.5883333086967468 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd81e10>\n2015-05-15T22:57:35Z\ndoing file 2015/05/15/KVWX/KVWX20150515_230229_V06.gz\n[[0.9316666722297668 0.7116666436195374 0.35499998927116394 ..., -- -- --]\n [0.9083333611488342 0.7983333468437195 0.824999988079071 ..., -- -- --]\n [0.2083333283662796 0.8149999976158142 0.67166668176651 ..., -- -- --]\n ..., \n [0.37833333015441895 0.4283333420753479 0.6883333325386047 ..., -- -- --]\n [0.9583333134651184 0.878333330154419 0.8550000190734863 ..., -- -- --]\n [0.3583333194255829 0.8216666579246521 0.82833331823349 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd81e50>\n2015-05-15T23:02:29Z\ndoing file 2015/05/15/KVWX/KVWX20150515_230722_V06.gz\n[[0.5249999761581421 0.7583333253860474 -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [0.8016666769981384 -- 0.31166666746139526 ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [0.4283333420753479 0.2916666567325592 -- ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bdb84d0>\n2015-05-15T23:07:22Z\ndoing file 2015/05/15/KVWX/KVWX20150515_231215_V06.gz\n[[0.9783333539962769 0.3683333396911621 0.9783333539962769 ..., -- -- --]\n [0.37166666984558105 0.4516666531562805 0.7116666436195374 ..., -- -- --]\n [0.3916666805744171 0.46166667342185974 0.7583333253860474 ..., -- -- --]\n ..., \n [0.8816666603088379 0.9083333611488342 0.9483333230018616 ..., -- -- --]\n [0.8683333396911621 0.9783333539962769 0.39500001072883606 ..., -- -- --]\n [0.6183333396911621 0.7649999856948853 0.9483333230018616 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd81790>\n2015-05-15T23:12:15Z\ndoing file 2015/05/15/KVWX/KVWX20150515_231709_V06.gz\n[[0.6416666507720947 0.7916666865348816 0.26499998569488525 ..., -- -- --]\n [0.32499998807907104 0.3616666793823242 0.3916666805744171 ..., -- -- --]\n [-- 0.4483333230018616 1.03166663646698 ..., -- -- --]\n ..., \n [-- 0.5416666865348816 0.2083333283662796 ..., -- -- --]\n [1.0516666173934937 0.42500001192092896 0.2083333283662796 ..., -- -- --]\n [0.3083333373069763 -- 0.6549999713897705 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bf69ed0>\n2015-05-15T23:17:09Z\ndoing file 2015/05/15/KVWX/KVWX20150515_232201_V06.gz\n[[0.9283333420753479 0.9150000214576721 0.9150000214576721 ..., -- -- --]\n [0.8483333587646484 0.8650000095367432 0.2083333283662796 ..., -- -- --]\n [0.8583333492279053 0.824999988079071 0.5716666579246521 ..., -- -- --]\n ..., \n [0.9483333230018616 0.9883333444595337 0.574999988079071 ..., -- -- --]\n [0.7416666746139526 0.92166668176651 0.9616666436195374 ..., -- -- --]\n [0.9116666913032532 0.7950000166893005 0.9383333325386047 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd81d50>\n2015-05-15T23:22:01Z\ndoing file 2015/05/15/KVWX/KVWX20150515_232654_V06.gz\n[[0.4050000011920929 0.9049999713897705 0.9983333349227905 ..., -- -- --]\n [0.5116666555404663 0.8316666483879089 0.8316666483879089 ..., -- -- --]\n [0.6650000214576721 0.7749999761581421 0.7749999761581421 ..., -- -- --]\n ..., \n [0.8083333373069763 0.9016666412353516 0.7950000166893005 ..., -- -- --]\n [0.824999988079071 0.871666669845581 0.5249999761581421 ..., -- -- --]\n [0.9350000023841858 0.8616666793823242 0.6650000214576721 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bdb87d0>\n2015-05-15T23:26:54Z\ndoing file 2015/05/15/KVWX/KVWX20150515_233146_V06.gz\n[[0.875 0.5183333158493042 0.351666659116745 ..., -- -- --]\n [0.9583333134651184 0.7649999856948853 0.675000011920929 ..., -- -- --]\n [0.5616666674613953 0.9283333420753479 0.9283333420753479 ..., -- -- --]\n ..., \n [0.6616666913032532 0.6516666412353516 0.6416666507720947 ..., -- -- --]\n [0.875 0.9150000214576721 0.9449999928474426 ..., -- -- --]\n [0.9083333611488342 0.8916666507720947 0.878333330154419 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bda4e90>\n2015-05-15T23:31:46Z\ndoing file 2015/05/15/KVWX/KVWX20150515_233639_V06.gz\n[[0.9150000214576721 0.8349999785423279 0.721666693687439 ..., -- -- --]\n [0.5983333587646484 0.5450000166893005 0.5350000262260437 ..., -- -- --]\n [0.7950000166893005 0.7883333563804626 0.7916666865348816 ..., -- -- --]\n ..., \n [0.41499999165534973 0.31166666746139526 0.2983333468437195 ..., -- -- --]\n [0.8616666793823242 0.8550000190734863 0.8450000286102295 ..., -- -- --]\n [0.8949999809265137 0.8183333277702332 0.8949999809265137 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bdb8cd0>\n2015-05-15T23:36:39Z\ndoing file 2015/05/15/KVWX/KVWX20150515_234132_V06.gz\n[[0.8650000095367432 -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- 0.7983333468437195 ..., -- -- --]\n ..., \n [-- -- -- ..., -- -- --]\n [-- -- -- ..., -- -- --]\n [-- -- 0.5483333468437195 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd95d50>\n2015-05-15T23:41:32Z\ndoing file 2015/05/15/KVWX/KVWX20150515_234624_V06.gz\n[[0.9983333349227905 0.9649999737739563 0.9983333349227905 ..., -- -- --]\n [0.9950000047683716 0.9983333349227905 0.9983333349227905 ..., -- -- --]\n [0.7483333349227905 0.9950000047683716 0.9950000047683716 ..., -- -- --]\n ..., \n [0.9883333444595337 0.7116666436195374 0.971666693687439 ..., -- -- --]\n [0.9583333134651184 0.9283333420753479 0.7549999952316284 ..., -- -- --]\n [0.9649999737739563 0.9583333134651184 0.9583333134651184 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd95850>\n2015-05-15T23:46:24Z\ndoing file 2015/05/15/KVWX/KVWX20150515_235116_V06.gz\n[[0.7616666555404663 0.9950000047683716 0.9983333349227905 ..., -- -- --]\n [0.9983333349227905 0.9983333349227905 0.9883333444595337 ..., -- -- --]\n [0.9983333349227905 0.9983333349227905 0.9883333444595337 ..., -- -- --]\n ..., \n [-- 0.9983333349227905 0.9549999833106995 ..., -- -- --]\n [0.9983333349227905 0.9950000047683716 0.9416666626930237 ..., -- -- --]\n [0.9983333349227905 0.9950000047683716 0.9916666746139526 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd95d90>\n2015-05-15T23:51:16Z\ndoing file 2015/05/15/KVWX/KVWX20150515_235609_V06.gz\n[[0.9983333349227905 0.9983333349227905 0.9983333349227905 ..., -- -- --]\n [0.9983333349227905 0.9983333349227905 0.9983333349227905 ..., -- -- --]\n [0.9683333039283752 0.9983333349227905 0.9983333349227905 ..., -- -- --]\n ..., \n [0.9983333349227905 0.9950000047683716 0.9983333349227905 ..., -- -- --]\n [0.9983333349227905 0.9983333349227905 0.9983333349227905 ..., -- -- --]\n [0.9983333349227905 0.9950000047683716 0.9983333349227905 ..., -- -- --]]\n<pyart.core.radar.Radar object at 0x10bd95dd0>\n2015-05-15T23:56:09Z\n"}, {"output_type": "display_data", "data": {"image/png": "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\nRU5ErkJggg==\n", "text/plain": "<matplotlib.figure.Figure at 0x10bae9d90>"}, "metadata": {}}], "metadata": {"collapsed": false, "trusted": true}}, {"execution_count": null, "cell_type": "code", "source": "", "outputs": [], "metadata": {"collapsed": true, "trusted": true}}], "nbformat": 4, "metadata": {"kernelspec": {"display_name": "Python 2", "name": "python2", "language": "python"}, "language_info": {"mimetype": "text/x-python", "nbconvert_exporter": "python", "version": "2.7.10", "name": "python", "file_extension": ".py", "pygments_lexer": "ipython2", "codemirror_mode": {"version": 2, "name": "ipython"}}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment