Skip to content

Instantly share code, notes, and snippets.

@kmuehlbauer
Created February 1, 2023 08:41
Show Gist options
  • Save kmuehlbauer/14824cdc4267303da15d58b3c3644c48 to your computer and use it in GitHub Desktop.
Save kmuehlbauer/14824cdc4267303da15d58b3c3644c48 to your computer and use it in GitHub Desktop.
How to process CfRadial1 Volume
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# How to process CfRadial1 Volume\n",
"\n",
"along the example of cluttermap creation"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"See question on [openradar discourse](https://openradar.discourse.group/t/how-to-filter-rays/)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We will make use of the following Open Source Software Packages:\n",
"\n",
"- [xarray](https://docs.xarray.dev)\n",
"- [xarray-datatree](https://xarray-datatree.readthedocs.io)\n",
"- [xradar](https://docs.openradarscience.org/projects/xradar/)\n",
"- [wradlib](https://docs.wradlib.org/)\n",
"- [matplotlib](https://matplotlib.org/)"
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import xarray as xr\n",
"import datatree\n",
"import xradar\n",
"import wradlib as wrl\n",
"import matplotlib.pyplot as plt"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"fname = \"BHP210601110223.nc\""
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Define wrapper function for clutter extraction"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"def extract_clutter(da, refl, cmap, wsize=3, thrsnorain=0, tr1=6.0, n_p=6, tr2=1.3, rm_nans=False):\n",
" if refl in da.variables:\n",
" da = da.assign({cmap: xr.apply_ufunc(\n",
" wrl.clutter.filter_gabella,\n",
" da[refl],\n",
" input_core_dims=[[\"azimuth\", \"range\"]],\n",
" output_core_dims=[[\"azimuth\", \"range\"]],\n",
" dask=\"parallelized\",\n",
" kwargs=dict(\n",
" wsize=wsize,\n",
" thrsnorain=thrsnorain,\n",
" tr1=tr1,\n",
" n_p=n_p,\n",
" tr2=tr2,\n",
" rm_nans=rm_nans,\n",
" ),\n",
" )})\n",
" return da"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Open CfRadial1 data file"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We make use of our new openradar community package ``xradar`` which builds on ``xarray`` and ``xarray-datatree``."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"vol = xradar.io.open_cfradial1_datatree(fname)"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (sweep: 10)\n",
"Dimensions without coordinates: sweep\n",
"Data variables:\n",
" sweep_group_name (sweep) &lt;U7 &#x27;sweep_0&#x27; &#x27;sweep_1&#x27; ... &#x27;sweep_8&#x27; &#x27;sweep_9&#x27;\n",
" sweep_fixed_angle (sweep) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
" time_coverage_start |S32 ...\n",
" time_coverage_end |S32 ...\n",
" volume_number int32 ...\n",
" platform_type |S32 ...\n",
" instrument_type |S32 ...\n",
" primary_axis |S32 ...\n",
"Attributes:\n",
" Conventions: CF/Radial instrument_parameters\n",
" version: 1.3\n",
" title: \n",
" institution: \n",
" references: \n",
" source: \n",
" comment: \n",
" instrument_name: BHOPAL-RADAR\n",
" history: </pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>datatree.DataTree</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-cab552e3-f2c3-4191-b47a-6b689eb63cff' class='xr-section-summary-in' type='checkbox' ><label for='section-cab552e3-f2c3-4191-b47a-6b689eb63cff' class='xr-section-summary' >Groups: <span>(12)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" radar_beam_width_v float32 ...\n",
" radar_beam_width_h float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>radar_parameters</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-35b7fdaf-bc34-47f6-970f-3bd7ea71c30d' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-35b7fdaf-bc34-47f6-970f-3bd7ea71c30d' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-18558d4c-2cb1-4af9-b487-af2e16b8a2af' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-18558d4c-2cb1-4af9-b487-af2e16b8a2af' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-2669e49f-139a-4381-b085-ee2d0799ee50' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-2669e49f-139a-4381-b085-ee2d0799ee50' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-25a92b37-da30-4bdf-81fc-c432bfe2e454' class='xr-section-summary-in' type='checkbox' checked><label for='section-25a92b37-da30-4bdf-81fc-c432bfe2e454' class='xr-section-summary' >Data variables: <span>(2)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>radar_beam_width_v</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-45ff483e-2f9d-4930-960e-5875d4512a27' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-45ff483e-2f9d-4930-960e-5875d4512a27' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-25be694f-eae1-4279-a6e9-46cdf1198025' class='xr-var-data-in' type='checkbox'><label for='data-25be694f-eae1-4279-a6e9-46cdf1198025' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Antenna beam width V polarization</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>meta_group :</span></dt><dd>radar_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>radar_beam_width_h</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-dee95b4e-ead4-4314-a1df-8ef34e484996' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dee95b4e-ead4-4314-a1df-8ef34e484996' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f6f9b7b0-2142-4961-a06d-877263a9d319' class='xr-var-data-in' type='checkbox'><label for='data-f6f9b7b0-2142-4961-a06d-877263a9d319' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Antenna beam width H polarization</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>meta_group :</span></dt><dd>radar_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-5a1445e5-e2e2-44c1-afaf-313761b74d28' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-5a1445e5-e2e2-44c1-afaf-313761b74d28' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>georeferencing_correction</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-889f630f-8a67-4d2c-8849-f860a722ee09' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-889f630f-8a67-4d2c-8849-f860a722ee09' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-dbd6dd2f-f5a4-4fbd-9d4f-180c222c6f6b' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-dbd6dd2f-f5a4-4fbd-9d4f-180c222c6f6b' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-e9bc0e60-7420-43a2-84d9-2d98daf87120' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-e9bc0e60-7420-43a2-84d9-2d98daf87120' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-e60ae2cf-cd3d-4b0d-a901-93404f534735' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-e60ae2cf-cd3d-4b0d-a901-93404f534735' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-4c615198-7b50-400b-a11d-371a0d015404' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-4c615198-7b50-400b-a11d-371a0d015404' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:02:49 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.9778 2.0 2.999 ... 358.0 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_0</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-92914519-4db5-46e3-a386-b2660631f320' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-92914519-4db5-46e3-a386-b2660631f320' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-de7824a4-3d83-4738-86f6-212a51f7f1af' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-de7824a4-3d83-4738-86f6-212a51f7f1af' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-b56dd790-f333-4e5e-9913-d64e019b8ccc' class='xr-section-summary-in' type='checkbox' checked><label for='section-b56dd790-f333-4e5e-9913-d64e019b8ccc' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:02:49 ... 2021-06-...</div><input id='attrs-cd5d5a53-cc4e-4830-91b7-2a5fc1f415fe' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cd5d5a53-cc4e-4830-91b7-2a5fc1f415fe' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ac6188f3-1681-42c6-88c3-7fd2790ede72' class='xr-var-data-in' type='checkbox'><label for='data-ac6188f3-1681-42c6-88c3-7fd2790ede72' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:02:49.000000000&#x27;, &#x27;2021-06-01T11:02:49.000000000&#x27;,\n",
" &#x27;2021-06-01T11:02:49.000000000&#x27;, ..., &#x27;2021-06-01T11:02:49.000000000&#x27;,\n",
" &#x27;2021-06-01T11:02:49.000000000&#x27;, &#x27;2021-06-01T11:02:49.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-8740cedf-38f5-4a16-b206-f2ffcc5c4c60' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8740cedf-38f5-4a16-b206-f2ffcc5c4c60' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-08e15fc7-3c83-4567-b852-0f55b7f7781c' class='xr-var-data-in' type='checkbox'><label for='data-08e15fc7-3c83-4567-b852-0f55b7f7781c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.9778 2.0 2.999 ... 359.0 360.0</div><input id='attrs-d9ddb533-0361-4917-adb3-0828ac132c84' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d9ddb533-0361-4917-adb3-0828ac132c84' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8147d5a6-c11c-4afc-b67b-780e3830d8a2' class='xr-var-data-in' type='checkbox'><label for='data-8147d5a6-c11c-4afc-b67b-780e3830d8a2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([ 0.977783, 1.999511, 2.999268, ..., 358.03345 , 358.9975 ,\n",
" 359.98077 ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d8977f70-1aec-414c-a243-312a297c2291' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d8977f70-1aec-414c-a243-312a297c2291' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3f58a127-64d3-4592-8270-954c1098ca15' class='xr-var-data-in' type='checkbox'><label for='data-3f58a127-64d3-4592-8270-954c1098ca15' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-67bd1c45-bcbc-40af-8da4-a3f04ace8eec' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-67bd1c45-bcbc-40af-8da4-a3f04ace8eec' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7e589c5f-13f4-4137-9321-2664c6c7b01e' class='xr-var-data-in' type='checkbox'><label for='data-7e589c5f-13f4-4137-9321-2664c6c7b01e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c6fc181f-6b15-41e7-ab75-2cf980e26ec3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c6fc181f-6b15-41e7-ab75-2cf980e26ec3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-826ff565-d54a-4ac9-be44-cef509a11d88' class='xr-var-data-in' type='checkbox'><label for='data-826ff565-d54a-4ac9-be44-cef509a11d88' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-78a5211a-f8db-475b-81b9-81f9eb4da3f2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-78a5211a-f8db-475b-81b9-81f9eb4da3f2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f2055e1a-1b0a-4a5d-b1de-0aeb564b1062' class='xr-var-data-in' type='checkbox'><label for='data-f2055e1a-1b0a-4a5d-b1de-0aeb564b1062' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-8da66686-2022-48d0-9dd2-061462bb2ee8' class='xr-section-summary-in' type='checkbox' checked><label for='section-8da66686-2022-48d0-9dd2-061462bb2ee8' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9cc822e1-be8f-4ba9-9239-9a4c0daa4a59' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9cc822e1-be8f-4ba9-9239-9a4c0daa4a59' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6312bb55-bcac-41b2-a4ca-1dfed271e9a7' class='xr-var-data-in' type='checkbox'><label for='data-6312bb55-bcac-41b2-a4ca-1dfed271e9a7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7631954d-59f6-4ba4-8916-b5409c65339d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7631954d-59f6-4ba4-8916-b5409c65339d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1341e246-d760-4316-96d2-6c585b8742cc' class='xr-var-data-in' type='checkbox'><label for='data-1341e246-d760-4316-96d2-6c585b8742cc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5bc0259d-2c97-4f84-880e-259a32b1df2b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5bc0259d-2c97-4f84-880e-259a32b1df2b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1ac1970e-5683-484b-93c7-e823f8424370' class='xr-var-data-in' type='checkbox'><label for='data-1ac1970e-5683-484b-93c7-e823f8424370' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c730f4e9-f959-4236-ad13-d7a081f1965c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c730f4e9-f959-4236-ad13-d7a081f1965c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6f43d025-7643-45a9-b54a-9f2a92d2573f' class='xr-var-data-in' type='checkbox'><label for='data-6f43d025-7643-45a9-b54a-9f2a92d2573f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-361a4c36-371e-4434-861c-98a7ef5dd97f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-361a4c36-371e-4434-861c-98a7ef5dd97f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7659a128-6579-4c98-a8db-0922aa7de0a6' class='xr-var-data-in' type='checkbox'><label for='data-7659a128-6579-4c98-a8db-0922aa7de0a6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-93162dd7-0072-448f-842f-a1a8b146bb08' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-93162dd7-0072-448f-842f-a1a8b146bb08' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-729809ef-3e83-4413-8da9-b0f0f3b008f7' class='xr-var-data-in' type='checkbox'><label for='data-729809ef-3e83-4413-8da9-b0f0f3b008f7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-41f6870c-e933-4c06-8fa1-9deb5a6e7106' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-41f6870c-e933-4c06-8fa1-9deb5a6e7106' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e928124f-4d99-472d-86da-49a83eaac551' class='xr-var-data-in' type='checkbox'><label for='data-e928124f-4d99-472d-86da-49a83eaac551' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-24806385-6f48-4e9c-a943-d989ad7c1aa0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-24806385-6f48-4e9c-a943-d989ad7c1aa0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cefe5ff1-a082-4240-a22e-18bd11564a59' class='xr-var-data-in' type='checkbox'><label for='data-cefe5ff1-a082-4240-a22e-18bd11564a59' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-810d16a5-8db2-481e-99da-546e4ba5508a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-810d16a5-8db2-481e-99da-546e4ba5508a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e481a5e0-8ab2-4213-bd59-07ec15fb86a6' class='xr-var-data-in' type='checkbox'><label for='data-e481a5e0-8ab2-4213-bd59-07ec15fb86a6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1cd82513-2c51-4fbd-b021-14d0da78f8fe' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1cd82513-2c51-4fbd-b021-14d0da78f8fe' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e31b3661-4748-4d38-93f6-22dbd6d6fc20' class='xr-var-data-in' type='checkbox'><label for='data-e31b3661-4748-4d38-93f6-22dbd6d6fc20' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9483ae3d-1a9f-4442-884a-bbb1fb968b21' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9483ae3d-1a9f-4442-884a-bbb1fb968b21' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a74fbba4-0a94-472a-83fb-b14911c666ed' class='xr-var-data-in' type='checkbox'><label for='data-a74fbba4-0a94-472a-83fb-b14911c666ed' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d77bb7ad-c6b5-4e8d-a9bc-774445c4250b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d77bb7ad-c6b5-4e8d-a9bc-774445c4250b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9f22a3c7-9543-4c8c-b530-57a31faebdc5' class='xr-var-data-in' type='checkbox'><label for='data-9f22a3c7-9543-4c8c-b530-57a31faebdc5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b01519e9-18cf-445b-8302-d094537b74fd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b01519e9-18cf-445b-8302-d094537b74fd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-661104e9-d18d-4404-ac19-d2886f047193' class='xr-var-data-in' type='checkbox'><label for='data-661104e9-d18d-4404-ac19-d2886f047193' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-b66977b7-190e-48d0-8df0-e6c4d818f785' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b66977b7-190e-48d0-8df0-e6c4d818f785' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:03:19 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.9998 2.013 3.035 ... 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_1</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-f9e14b2a-5adb-4176-b531-946e61b24437' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-f9e14b2a-5adb-4176-b531-946e61b24437' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-a40261f7-bfd3-4111-abda-40486a90185c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-a40261f7-bfd3-4111-abda-40486a90185c' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-8d37d3dc-b44b-484a-a1b7-9013b23fd9c0' class='xr-section-summary-in' type='checkbox' checked><label for='section-8d37d3dc-b44b-484a-a1b7-9013b23fd9c0' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:03:19 ... 2021-06-...</div><input id='attrs-40421766-8c1e-47aa-b417-78c3f1d4ed48' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-40421766-8c1e-47aa-b417-78c3f1d4ed48' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5dbb0010-15b6-4f4b-a33e-ed33036efc91' class='xr-var-data-in' type='checkbox'><label for='data-5dbb0010-15b6-4f4b-a33e-ed33036efc91' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:03:19.000000000&#x27;, &#x27;2021-06-01T11:03:19.000000000&#x27;,\n",
" &#x27;2021-06-01T11:03:19.000000000&#x27;, ..., &#x27;2021-06-01T11:03:19.000000000&#x27;,\n",
" &#x27;2021-06-01T11:03:19.000000000&#x27;, &#x27;2021-06-01T11:03:19.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-1c44d400-f206-4b4c-a8b0-cc39395976df' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1c44d400-f206-4b4c-a8b0-cc39395976df' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-97e4ee4f-4c90-4567-a724-edfbc540b7a6' class='xr-var-data-in' type='checkbox'><label for='data-97e4ee4f-4c90-4567-a724-edfbc540b7a6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.9998 2.013 3.035 ... 359.0 360.0</div><input id='attrs-a7ee94de-f815-4b79-9ea3-f020d6700cd9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a7ee94de-f815-4b79-9ea3-f020d6700cd9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-62b2151e-1ba4-4c47-8045-65953afa82d6' class='xr-var-data-in' type='checkbox'><label for='data-62b2151e-1ba4-4c47-8045-65953afa82d6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([ 0.999756, 2.013244, 3.034973, ..., 358.00873 , 359.00574 ,\n",
" 359.98627 ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1aa1fc67-8c88-4a14-ba19-3075f782dcc0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1aa1fc67-8c88-4a14-ba19-3075f782dcc0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-372613d1-6162-4172-9ca2-24886b8ddcad' class='xr-var-data-in' type='checkbox'><label for='data-372613d1-6162-4172-9ca2-24886b8ddcad' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-be7d4619-7c05-48cf-afff-376d2ba5a8a7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-be7d4619-7c05-48cf-afff-376d2ba5a8a7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-52d34cb7-04ec-4968-96c6-205615c3ec75' class='xr-var-data-in' type='checkbox'><label for='data-52d34cb7-04ec-4968-96c6-205615c3ec75' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c3766da9-06b6-4935-aba1-bf82e53937b4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c3766da9-06b6-4935-aba1-bf82e53937b4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-23fd9542-f2b0-4cb7-9490-e5aa8ef00e4e' class='xr-var-data-in' type='checkbox'><label for='data-23fd9542-f2b0-4cb7-9490-e5aa8ef00e4e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2fc7aeb6-26be-478e-944f-619d1d48a0dc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2fc7aeb6-26be-478e-944f-619d1d48a0dc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dad9a3bf-0e62-4ee1-a44d-399e360f6759' class='xr-var-data-in' type='checkbox'><label for='data-dad9a3bf-0e62-4ee1-a44d-399e360f6759' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-ab542e5e-1eaa-4133-8a4d-a6ac2291df81' class='xr-section-summary-in' type='checkbox' checked><label for='section-ab542e5e-1eaa-4133-8a4d-a6ac2291df81' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e31b8e06-fe5a-4a2f-a1c9-8dd8c0e98776' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e31b8e06-fe5a-4a2f-a1c9-8dd8c0e98776' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c804f180-7fb0-42ed-a985-a7d773716cd1' class='xr-var-data-in' type='checkbox'><label for='data-c804f180-7fb0-42ed-a985-a7d773716cd1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-246a61da-677d-4137-bfce-e013e9655699' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-246a61da-677d-4137-bfce-e013e9655699' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b408085f-42bf-43df-a5f7-afa862e6e1a9' class='xr-var-data-in' type='checkbox'><label for='data-b408085f-42bf-43df-a5f7-afa862e6e1a9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1b9d7f31-2c9f-4799-9b47-e7b2d78f6341' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1b9d7f31-2c9f-4799-9b47-e7b2d78f6341' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-44dc8123-4330-46d2-a2d5-d4f194db35b8' class='xr-var-data-in' type='checkbox'><label for='data-44dc8123-4330-46d2-a2d5-d4f194db35b8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9c4ef531-8d03-4cc2-a45e-f5de35204e31' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9c4ef531-8d03-4cc2-a45e-f5de35204e31' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-894ee538-18c4-49fc-bd7d-e0f949ffc582' class='xr-var-data-in' type='checkbox'><label for='data-894ee538-18c4-49fc-bd7d-e0f949ffc582' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1e670046-872f-49b7-aedd-068f7df001ed' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1e670046-872f-49b7-aedd-068f7df001ed' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4d8cf481-205a-4647-84fc-211a8be79ef7' class='xr-var-data-in' type='checkbox'><label for='data-4d8cf481-205a-4647-84fc-211a8be79ef7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b3c20fb1-0a42-47e1-963a-db786f33c2d5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b3c20fb1-0a42-47e1-963a-db786f33c2d5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-637b3a04-bad1-4a17-8e92-863784416c79' class='xr-var-data-in' type='checkbox'><label for='data-637b3a04-bad1-4a17-8e92-863784416c79' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8eedd92f-fa42-4ce0-8d6c-7ac927fb7b53' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8eedd92f-fa42-4ce0-8d6c-7ac927fb7b53' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-04026cc1-bb22-48ad-b944-36bc49f8cbe8' class='xr-var-data-in' type='checkbox'><label for='data-04026cc1-bb22-48ad-b944-36bc49f8cbe8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1669ecd6-a971-43a8-8237-89e2defee701' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1669ecd6-a971-43a8-8237-89e2defee701' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-073687ed-1964-42c1-a102-0862ecace08a' class='xr-var-data-in' type='checkbox'><label for='data-073687ed-1964-42c1-a102-0862ecace08a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-16e3391d-9e88-4497-a11c-c64f0b3f1908' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-16e3391d-9e88-4497-a11c-c64f0b3f1908' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7cfe1d59-e77b-4ddf-b5d0-6f9f2245a4e3' class='xr-var-data-in' type='checkbox'><label for='data-7cfe1d59-e77b-4ddf-b5d0-6f9f2245a4e3' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-aa59054a-1c27-4943-8aee-2ff753ac8b97' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-aa59054a-1c27-4943-8aee-2ff753ac8b97' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c2ce678e-435d-4cfd-bc59-b0916e6fcf76' class='xr-var-data-in' type='checkbox'><label for='data-c2ce678e-435d-4cfd-bc59-b0916e6fcf76' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5661d1a0-15ba-409a-8d9f-0f64cd7eecb9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5661d1a0-15ba-409a-8d9f-0f64cd7eecb9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f820deea-29c6-44ea-b671-1489a7657bca' class='xr-var-data-in' type='checkbox'><label for='data-f820deea-29c6-44ea-b671-1489a7657bca' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-485eb8e8-5ba6-49af-b4b5-9620288b9fa1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-485eb8e8-5ba6-49af-b4b5-9620288b9fa1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1e49dfb7-e86d-450d-b729-8c4c12be5402' class='xr-var-data-in' type='checkbox'><label for='data-1e49dfb7-e86d-450d-b729-8c4c12be5402' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-be0620bb-84dd-4fbc-8eef-5df74f3b95f2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-be0620bb-84dd-4fbc-8eef-5df74f3b95f2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-51d42e7e-5c6f-4579-b440-1027bb952b80' class='xr-var-data-in' type='checkbox'><label for='data-51d42e7e-5c6f-4579-b440-1027bb952b80' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-fb1e65c0-7d1d-4ce9-9b08-5621b06ebb5f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-fb1e65c0-7d1d-4ce9-9b08-5621b06ebb5f' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:03:49 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.9888 2.013 3.021 ... 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_2</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-757af41d-a4eb-4377-b2e9-cd2f30ba6971' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-757af41d-a4eb-4377-b2e9-cd2f30ba6971' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-0b9c8ae2-003f-483b-9072-c3e755faaca3' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-0b9c8ae2-003f-483b-9072-c3e755faaca3' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-4714bf9a-24ba-4143-826b-dcf0bd3fb3f0' class='xr-section-summary-in' type='checkbox' checked><label for='section-4714bf9a-24ba-4143-826b-dcf0bd3fb3f0' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:03:49 ... 2021-06-...</div><input id='attrs-ffcd12a3-09da-446e-a7e8-f0f5d4310ad5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ffcd12a3-09da-446e-a7e8-f0f5d4310ad5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1a79ec28-b73b-4f9d-804b-3441d762d65e' class='xr-var-data-in' type='checkbox'><label for='data-1a79ec28-b73b-4f9d-804b-3441d762d65e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:03:49.000000000&#x27;, &#x27;2021-06-01T11:03:49.000000000&#x27;,\n",
" &#x27;2021-06-01T11:03:49.000000000&#x27;, ..., &#x27;2021-06-01T11:03:48.000000000&#x27;,\n",
" &#x27;2021-06-01T11:03:48.000000000&#x27;, &#x27;2021-06-01T11:03:48.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-606c7bc9-ae39-435d-8fbe-52265fbed124' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-606c7bc9-ae39-435d-8fbe-52265fbed124' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-17a28b4b-5fa9-41bb-86a7-3ac912fc9bfa' class='xr-var-data-in' type='checkbox'><label for='data-17a28b4b-5fa9-41bb-86a7-3ac912fc9bfa' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.9888 2.013 3.021 ... 359.0 360.0</div><input id='attrs-0f585411-ee10-43fb-ae08-53e47fb92cbc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0f585411-ee10-43fb-ae08-53e47fb92cbc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a7e75c71-d199-4b93-ba15-0a07668b0690' class='xr-var-data-in' type='checkbox'><label for='data-a7e75c71-d199-4b93-ba15-0a07668b0690' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([ 0.98877 , 2.013244, 3.02124 , ..., 358.01422 , 359.01398 ,\n",
" 359.99176 ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9772558c-e294-4147-a255-c9495bca78ea' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9772558c-e294-4147-a255-c9495bca78ea' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-92c232e6-b551-47d0-8a92-af7ba5f1c91a' class='xr-var-data-in' type='checkbox'><label for='data-92c232e6-b551-47d0-8a92-af7ba5f1c91a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3d5d31ba-a977-4dc6-b5e6-15f73891b1b3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3d5d31ba-a977-4dc6-b5e6-15f73891b1b3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-40264bea-1632-4bc1-98a7-93815098b28e' class='xr-var-data-in' type='checkbox'><label for='data-40264bea-1632-4bc1-98a7-93815098b28e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-59ae4a6b-6b5d-43b3-b611-96e7512490fb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-59ae4a6b-6b5d-43b3-b611-96e7512490fb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c7649b43-e8ea-4328-adc2-605cb46d3bb4' class='xr-var-data-in' type='checkbox'><label for='data-c7649b43-e8ea-4328-adc2-605cb46d3bb4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c1b87a61-d142-4356-a2bc-2802df88eb1c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c1b87a61-d142-4356-a2bc-2802df88eb1c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b405ab32-c337-443d-889f-a1c33f0865ae' class='xr-var-data-in' type='checkbox'><label for='data-b405ab32-c337-443d-889f-a1c33f0865ae' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-3f1bdeef-7674-41e9-ac1e-aff5a1e3d76e' class='xr-section-summary-in' type='checkbox' checked><label for='section-3f1bdeef-7674-41e9-ac1e-aff5a1e3d76e' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-dcd20679-c181-4651-81d6-0f32baf771cc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dcd20679-c181-4651-81d6-0f32baf771cc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0a39aefa-5aa9-4eb6-92a0-301d52b7ded9' class='xr-var-data-in' type='checkbox'><label for='data-0a39aefa-5aa9-4eb6-92a0-301d52b7ded9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-17ab2bd8-5ebc-4a36-8f7b-30d34f60751e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-17ab2bd8-5ebc-4a36-8f7b-30d34f60751e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b11a04d5-b9a4-4646-8100-aea72dd68862' class='xr-var-data-in' type='checkbox'><label for='data-b11a04d5-b9a4-4646-8100-aea72dd68862' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-cf0dd3ac-310c-4edf-ab24-1aaefe5b629d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cf0dd3ac-310c-4edf-ab24-1aaefe5b629d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f9d07675-360d-4c11-a90e-5eee0f61ecb7' class='xr-var-data-in' type='checkbox'><label for='data-f9d07675-360d-4c11-a90e-5eee0f61ecb7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6b764ea9-b0bf-49fa-9b2f-c2f45ce68eb8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6b764ea9-b0bf-49fa-9b2f-c2f45ce68eb8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7e826a8e-456f-4636-8509-e3e4971b282c' class='xr-var-data-in' type='checkbox'><label for='data-7e826a8e-456f-4636-8509-e3e4971b282c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-281c33d5-c1f7-46d2-b5d9-3dc3f92a29f1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-281c33d5-c1f7-46d2-b5d9-3dc3f92a29f1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-13da9dcb-6a44-4d5c-93e9-aa29d9b33a83' class='xr-var-data-in' type='checkbox'><label for='data-13da9dcb-6a44-4d5c-93e9-aa29d9b33a83' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-40cae4c4-b7f8-4768-b59b-efa007d8e710' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-40cae4c4-b7f8-4768-b59b-efa007d8e710' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f2b32712-752a-4519-a3a0-128b9ce8bc51' class='xr-var-data-in' type='checkbox'><label for='data-f2b32712-752a-4519-a3a0-128b9ce8bc51' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d988fae8-8e3d-490b-bf7c-05bbb9d6d640' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d988fae8-8e3d-490b-bf7c-05bbb9d6d640' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-20948910-e18d-46bc-8be7-d4315b99b1ca' class='xr-var-data-in' type='checkbox'><label for='data-20948910-e18d-46bc-8be7-d4315b99b1ca' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-865a8b8e-d509-4c82-b061-2ada6a8fceaa' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-865a8b8e-d509-4c82-b061-2ada6a8fceaa' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e0341aca-ea40-4619-9b14-dda180ccfc5d' class='xr-var-data-in' type='checkbox'><label for='data-e0341aca-ea40-4619-9b14-dda180ccfc5d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2ebd6399-6631-4d74-abdc-94db55161521' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2ebd6399-6631-4d74-abdc-94db55161521' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-77a34753-9625-4742-bea6-f9ea7d3acdef' class='xr-var-data-in' type='checkbox'><label for='data-77a34753-9625-4742-bea6-f9ea7d3acdef' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-159165ae-d4f1-4b27-ad60-e897c8cc6c8b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-159165ae-d4f1-4b27-ad60-e897c8cc6c8b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9383e865-9902-4ee1-ac30-a17d8421a024' class='xr-var-data-in' type='checkbox'><label for='data-9383e865-9902-4ee1-ac30-a17d8421a024' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1ea7c03f-fef2-4e53-8a58-d4d228dea788' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1ea7c03f-fef2-4e53-8a58-d4d228dea788' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a8f02314-d525-4347-812a-8e3c8bc6aff3' class='xr-var-data-in' type='checkbox'><label for='data-a8f02314-d525-4347-812a-8e3c8bc6aff3' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c0c70e4b-0bc6-4330-a5c9-40f77bff662d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c0c70e4b-0bc6-4330-a5c9-40f77bff662d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5d2bb2e8-bc7f-4113-87ca-670b11738e6c' class='xr-var-data-in' type='checkbox'><label for='data-5d2bb2e8-bc7f-4113-87ca-670b11738e6c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-01ec46d1-9f5a-4799-9af5-20b5eb8ea185' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-01ec46d1-9f5a-4799-9af5-20b5eb8ea185' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6567a375-a9e9-4fa5-bff0-e783d8437320' class='xr-var-data-in' type='checkbox'><label for='data-6567a375-a9e9-4fa5-bff0-e783d8437320' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-7b194d86-4339-4c2a-bc9b-eeeb1771f6d2' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-7b194d86-4339-4c2a-bc9b-eeeb1771f6d2' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:04:48 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.9998 1.991 2.991 ... 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_3</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-cc42b153-87be-4510-a879-1a0e01352d04' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-cc42b153-87be-4510-a879-1a0e01352d04' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-1ce2a48b-5400-4f99-bf53-1bef6a696354' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-1ce2a48b-5400-4f99-bf53-1bef6a696354' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-e5fc08eb-07d1-48f7-9fbd-339ccb16bc5b' class='xr-section-summary-in' type='checkbox' checked><label for='section-e5fc08eb-07d1-48f7-9fbd-339ccb16bc5b' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:04:48 ... 2021-06-...</div><input id='attrs-71b85674-e52e-44b2-9d52-ae134d0c1959' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-71b85674-e52e-44b2-9d52-ae134d0c1959' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1cfbe787-69ac-4045-829b-02c436b7f42f' class='xr-var-data-in' type='checkbox'><label for='data-1cfbe787-69ac-4045-829b-02c436b7f42f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:04:48.000000000&#x27;, &#x27;2021-06-01T11:04:48.000000000&#x27;,\n",
" &#x27;2021-06-01T11:04:48.000000000&#x27;, ..., &#x27;2021-06-01T11:04:47.000000000&#x27;,\n",
" &#x27;2021-06-01T11:04:47.000000000&#x27;, &#x27;2021-06-01T11:04:47.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-90f6095e-9cfd-4e7b-b033-02983012b2fd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-90f6095e-9cfd-4e7b-b033-02983012b2fd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ac43f847-baee-4f1a-8b6a-a5a2143ce695' class='xr-var-data-in' type='checkbox'><label for='data-ac43f847-baee-4f1a-8b6a-a5a2143ce695' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.9998 1.991 2.991 ... 359.0 360.0</div><input id='attrs-2b797c5c-3d1c-4eca-a5ae-556cf6ed79b3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2b797c5c-3d1c-4eca-a5ae-556cf6ed79b3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a017d438-4e4d-4320-964b-4a5cee952077' class='xr-var-data-in' type='checkbox'><label for='data-a017d438-4e4d-4320-964b-4a5cee952077' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([ 0.999756, 1.991272, 2.991028, ..., 357.9895 , 359.00024 ,\n",
" 359.99176 ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-280e3476-5743-4760-a414-7775fe211e40' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-280e3476-5743-4760-a414-7775fe211e40' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f4f86995-65c2-48fa-8fa2-190f3a511dea' class='xr-var-data-in' type='checkbox'><label for='data-f4f86995-65c2-48fa-8fa2-190f3a511dea' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a1cc4b97-a379-47c8-b24d-208d19d27d8c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a1cc4b97-a379-47c8-b24d-208d19d27d8c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5cab41ea-5c60-46d1-a5ac-86a76c3194ba' class='xr-var-data-in' type='checkbox'><label for='data-5cab41ea-5c60-46d1-a5ac-86a76c3194ba' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-dd536a6a-1239-4405-abad-3324491ca2b5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dd536a6a-1239-4405-abad-3324491ca2b5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6afee013-66d3-4763-90c4-fad715533a9d' class='xr-var-data-in' type='checkbox'><label for='data-6afee013-66d3-4763-90c4-fad715533a9d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-63cc560e-7321-4120-a0e1-7fd92a21a7e7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-63cc560e-7321-4120-a0e1-7fd92a21a7e7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b9485cf7-456b-415d-83fe-e95a1a9cd0ee' class='xr-var-data-in' type='checkbox'><label for='data-b9485cf7-456b-415d-83fe-e95a1a9cd0ee' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-b589a558-746b-4b0b-a7a4-82771326a198' class='xr-section-summary-in' type='checkbox' checked><label for='section-b589a558-746b-4b0b-a7a4-82771326a198' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-514a5899-b974-4e47-b25e-ad2aff816ea9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-514a5899-b974-4e47-b25e-ad2aff816ea9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-aeaba313-ac50-48b2-8fe2-3b69300367bc' class='xr-var-data-in' type='checkbox'><label for='data-aeaba313-ac50-48b2-8fe2-3b69300367bc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d489e688-1273-4a93-875b-92573dc04b0d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d489e688-1273-4a93-875b-92573dc04b0d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ae0e36ee-845b-4a1c-ac97-09b3d38bf811' class='xr-var-data-in' type='checkbox'><label for='data-ae0e36ee-845b-4a1c-ac97-09b3d38bf811' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4badd212-551a-48e0-a913-3899ac5ad909' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4badd212-551a-48e0-a913-3899ac5ad909' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-683f3675-5674-4e4b-8725-06a35d6cc441' class='xr-var-data-in' type='checkbox'><label for='data-683f3675-5674-4e4b-8725-06a35d6cc441' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2ca607bb-26ad-449b-a3a4-16f266c0e111' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2ca607bb-26ad-449b-a3a4-16f266c0e111' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f31e830e-9c58-490f-b411-2f83f19da804' class='xr-var-data-in' type='checkbox'><label for='data-f31e830e-9c58-490f-b411-2f83f19da804' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-26033591-1c7a-43de-ab00-3f042e86816f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-26033591-1c7a-43de-ab00-3f042e86816f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-29bd3091-b0f2-4445-bc42-606b7e14d90f' class='xr-var-data-in' type='checkbox'><label for='data-29bd3091-b0f2-4445-bc42-606b7e14d90f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d2a0e665-2daf-4f8c-b73c-fc4fc023937d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d2a0e665-2daf-4f8c-b73c-fc4fc023937d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-309ac736-0117-4f93-9997-f5083b811d6c' class='xr-var-data-in' type='checkbox'><label for='data-309ac736-0117-4f93-9997-f5083b811d6c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8a23d445-1ad4-43af-82f6-7e587365cff3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8a23d445-1ad4-43af-82f6-7e587365cff3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a1f08fb8-e2c6-4b81-9f30-5ad83437e667' class='xr-var-data-in' type='checkbox'><label for='data-a1f08fb8-e2c6-4b81-9f30-5ad83437e667' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f5095117-57a8-44ed-95a6-2cb28c1fb061' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f5095117-57a8-44ed-95a6-2cb28c1fb061' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-374f7336-fe36-4a0b-9f84-4c19e9ee876b' class='xr-var-data-in' type='checkbox'><label for='data-374f7336-fe36-4a0b-9f84-4c19e9ee876b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d84e0cd7-179e-485b-b26f-92092f1fb930' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d84e0cd7-179e-485b-b26f-92092f1fb930' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a754b35f-6c35-45f4-8f25-89cdd34695ae' class='xr-var-data-in' type='checkbox'><label for='data-a754b35f-6c35-45f4-8f25-89cdd34695ae' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-10e218d2-5735-40fe-8c79-504f9efba011' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-10e218d2-5735-40fe-8c79-504f9efba011' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0ef20f06-9bcf-4972-82c3-4d029bf06758' class='xr-var-data-in' type='checkbox'><label for='data-0ef20f06-9bcf-4972-82c3-4d029bf06758' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-54bbaf46-6667-4ee9-ab04-863fba0a190d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-54bbaf46-6667-4ee9-ab04-863fba0a190d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-51ec6e03-4e1a-4704-99c1-97ce595e2319' class='xr-var-data-in' type='checkbox'><label for='data-51ec6e03-4e1a-4704-99c1-97ce595e2319' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d747db7b-fba4-4474-8b8e-18ba55b84485' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d747db7b-fba4-4474-8b8e-18ba55b84485' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1a5da458-1f38-48ce-97d8-cf0b55b48e34' class='xr-var-data-in' type='checkbox'><label for='data-1a5da458-1f38-48ce-97d8-cf0b55b48e34' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c36909cc-bac7-4c6d-866b-16c83dd35f81' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c36909cc-bac7-4c6d-866b-16c83dd35f81' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f54d727c-716f-4896-baad-8c377ccf2e61' class='xr-var-data-in' type='checkbox'><label for='data-f54d727c-716f-4896-baad-8c377ccf2e61' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-2380364f-e691-4b60-82eb-0a9758e2f1cb' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-2380364f-e691-4b60-82eb-0a9758e2f1cb' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:05:17 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.005487 0.9998 2.01 ... 358.0 359.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_4</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-a03d61e6-cd7e-4b01-8ace-60b28fffa9f5' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-a03d61e6-cd7e-4b01-8ace-60b28fffa9f5' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-415f54f1-e241-42fe-ace0-ef5e500584c8' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-415f54f1-e241-42fe-ace0-ef5e500584c8' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-1ca6fb11-4b45-41c3-ab17-93b0268f8de6' class='xr-section-summary-in' type='checkbox' checked><label for='section-1ca6fb11-4b45-41c3-ab17-93b0268f8de6' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:05:17 ... 2021-06-...</div><input id='attrs-cf570b3a-ccf9-4815-a13a-4ab032bb4e6c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cf570b3a-ccf9-4815-a13a-4ab032bb4e6c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fc7bae0a-d5c1-49c9-b016-c266d47a8385' class='xr-var-data-in' type='checkbox'><label for='data-fc7bae0a-d5c1-49c9-b016-c266d47a8385' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:05:17.000000000&#x27;, &#x27;2021-06-01T11:05:17.000000000&#x27;,\n",
" &#x27;2021-06-01T11:05:17.000000000&#x27;, ..., &#x27;2021-06-01T11:05:17.000000000&#x27;,\n",
" &#x27;2021-06-01T11:05:17.000000000&#x27;, &#x27;2021-06-01T11:05:17.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-b084de03-f546-44dc-877f-be576f2b1d25' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b084de03-f546-44dc-877f-be576f2b1d25' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e636ed0e-bba1-4a79-b1fd-6c5b592da875' class='xr-var-data-in' type='checkbox'><label for='data-e636ed0e-bba1-4a79-b1fd-6c5b592da875' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.005487 0.9998 ... 358.0 359.0</div><input id='attrs-2cf4dc9a-4838-47f4-835f-baab83d11784' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2cf4dc9a-4838-47f4-835f-baab83d11784' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-988b951a-d654-44eb-88da-3cd0d9911870' class='xr-var-data-in' type='checkbox'><label for='data-988b951a-d654-44eb-88da-3cd0d9911870' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([5.487279e-03, 9.997557e-01, 2.010498e+00, ..., 3.570007e+02,\n",
" 3.580115e+02, 3.590112e+02], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d2139072-8cb9-44e1-9e3a-e6c60de9d27b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d2139072-8cb9-44e1-9e3a-e6c60de9d27b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-35fd69ec-da36-4bad-b93a-12662082a68b' class='xr-var-data-in' type='checkbox'><label for='data-35fd69ec-da36-4bad-b93a-12662082a68b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-bd21aeac-0af3-4140-bd5a-7f6ef0252345' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bd21aeac-0af3-4140-bd5a-7f6ef0252345' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fe1ab164-679d-42a4-a772-0490ee70ec1a' class='xr-var-data-in' type='checkbox'><label for='data-fe1ab164-679d-42a4-a772-0490ee70ec1a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-675b10a7-2241-4470-9ffb-1188c16ca9b3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-675b10a7-2241-4470-9ffb-1188c16ca9b3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5d91a020-303c-4e68-ae62-5e82fd3549c0' class='xr-var-data-in' type='checkbox'><label for='data-5d91a020-303c-4e68-ae62-5e82fd3549c0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3c78911f-2bc0-41c6-9631-07ae4dcd3c05' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3c78911f-2bc0-41c6-9631-07ae4dcd3c05' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5b760a05-0f0e-4fca-874d-e168d90744ec' class='xr-var-data-in' type='checkbox'><label for='data-5b760a05-0f0e-4fca-874d-e168d90744ec' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-0712cea2-b2e5-4bd4-8605-01d9e778ebea' class='xr-section-summary-in' type='checkbox' checked><label for='section-0712cea2-b2e5-4bd4-8605-01d9e778ebea' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-42f49409-1877-4f27-b444-f3ef5c45bc3d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-42f49409-1877-4f27-b444-f3ef5c45bc3d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-12100ee8-03a2-4555-b3cd-53fdb8c0b318' class='xr-var-data-in' type='checkbox'><label for='data-12100ee8-03a2-4555-b3cd-53fdb8c0b318' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a17f9198-24d8-4c48-82b8-6f13e6822901' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a17f9198-24d8-4c48-82b8-6f13e6822901' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d207fd62-68d7-4b6f-ac76-6b36928c956a' class='xr-var-data-in' type='checkbox'><label for='data-d207fd62-68d7-4b6f-ac76-6b36928c956a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b8467922-58ae-43fb-aafb-241b376b2f0f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b8467922-58ae-43fb-aafb-241b376b2f0f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8034cc14-bb05-459e-96ff-c060d3e717e5' class='xr-var-data-in' type='checkbox'><label for='data-8034cc14-bb05-459e-96ff-c060d3e717e5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f6f6f360-83d5-432f-b3a3-0df760fa4345' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f6f6f360-83d5-432f-b3a3-0df760fa4345' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6c9a9c6e-f6fa-462b-aeca-069b9cf81dad' class='xr-var-data-in' type='checkbox'><label for='data-6c9a9c6e-f6fa-462b-aeca-069b9cf81dad' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fed714cc-6489-4b69-91e2-346f0ece94d7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fed714cc-6489-4b69-91e2-346f0ece94d7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-63148a41-9757-41b0-96f8-e61a55c51dac' class='xr-var-data-in' type='checkbox'><label for='data-63148a41-9757-41b0-96f8-e61a55c51dac' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0ec77133-103f-45df-b8ce-138b17cbead4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0ec77133-103f-45df-b8ce-138b17cbead4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b250ce41-6fc6-4cac-b4aa-c8b9e6614c68' class='xr-var-data-in' type='checkbox'><label for='data-b250ce41-6fc6-4cac-b4aa-c8b9e6614c68' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-58041a80-0d1e-41f5-855b-37002d3911e1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-58041a80-0d1e-41f5-855b-37002d3911e1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-657440de-9919-493c-93b9-5bde59a5cfb6' class='xr-var-data-in' type='checkbox'><label for='data-657440de-9919-493c-93b9-5bde59a5cfb6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9338bfc3-54d3-4af5-bb0f-84a6c52ad5b2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9338bfc3-54d3-4af5-bb0f-84a6c52ad5b2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-39a0a5e2-a340-4da9-92e4-214c50001dc0' class='xr-var-data-in' type='checkbox'><label for='data-39a0a5e2-a340-4da9-92e4-214c50001dc0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a7618390-3cdb-4c3e-ae8c-a73bcfde5cf2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a7618390-3cdb-4c3e-ae8c-a73bcfde5cf2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e567c1af-453e-4980-9cdc-29ee242508ca' class='xr-var-data-in' type='checkbox'><label for='data-e567c1af-453e-4980-9cdc-29ee242508ca' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-aa10a80a-d352-4d7e-86b0-e010d06c35cb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-aa10a80a-d352-4d7e-86b0-e010d06c35cb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4c432797-a01a-489d-aec9-4374a03a707b' class='xr-var-data-in' type='checkbox'><label for='data-4c432797-a01a-489d-aec9-4374a03a707b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0109f138-2125-42de-8298-3294dec33e32' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0109f138-2125-42de-8298-3294dec33e32' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9325ef0d-4266-42d7-a074-e3c641764a53' class='xr-var-data-in' type='checkbox'><label for='data-9325ef0d-4266-42d7-a074-e3c641764a53' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9f98babf-6da8-416b-9628-9aaf6f710506' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9f98babf-6da8-416b-9628-9aaf6f710506' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8b600269-c6b5-4de0-b6ed-406c93c7a8c4' class='xr-var-data-in' type='checkbox'><label for='data-8b600269-c6b5-4de0-b6ed-406c93c7a8c4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6e058948-57e3-432d-8dc1-bb0d3418fc92' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6e058948-57e3-432d-8dc1-bb0d3418fc92' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d41aeee7-5e2e-43b0-b8e4-d06e4096e168' class='xr-var-data-in' type='checkbox'><label for='data-d41aeee7-5e2e-43b0-b8e4-d06e4096e168' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-6706e7d6-453c-42fc-9a1f-64426a184f03' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-6706e7d6-453c-42fc-9a1f-64426a184f03' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:06:16 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.005489 1.022 1.994 ... 358.0 359.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_5</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-111ff4db-d847-426b-81b7-ce70d249e902' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-111ff4db-d847-426b-81b7-ce70d249e902' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-b21d0549-9557-4d54-8cb8-ea7ba68e5bbc' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b21d0549-9557-4d54-8cb8-ea7ba68e5bbc' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-9a3fdd42-74fb-497b-9ded-5067e692f2ab' class='xr-section-summary-in' type='checkbox' checked><label for='section-9a3fdd42-74fb-497b-9ded-5067e692f2ab' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:06:16 ... 2021-06-...</div><input id='attrs-e3f72b10-b058-4d09-bbfd-e46d9b4e91e0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e3f72b10-b058-4d09-bbfd-e46d9b4e91e0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f1a00fe2-a7af-4f4f-a8aa-aeee9c105503' class='xr-var-data-in' type='checkbox'><label for='data-f1a00fe2-a7af-4f4f-a8aa-aeee9c105503' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:06:16.000000000&#x27;, &#x27;2021-06-01T11:06:16.000000000&#x27;,\n",
" &#x27;2021-06-01T11:05:47.000000000&#x27;, ..., &#x27;2021-06-01T11:06:16.000000000&#x27;,\n",
" &#x27;2021-06-01T11:06:16.000000000&#x27;, &#x27;2021-06-01T11:06:16.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-bd825b9a-50f8-47f6-b363-558f930ce49d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bd825b9a-50f8-47f6-b363-558f930ce49d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2bee216b-4557-47f5-8bff-1ed959077d9f' class='xr-var-data-in' type='checkbox'><label for='data-2bee216b-4557-47f5-8bff-1ed959077d9f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.005489 1.022 ... 358.0 359.0</div><input id='attrs-f79d9e76-c88c-475a-b1b3-6a7879d26a88' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f79d9e76-c88c-475a-b1b3-6a7879d26a88' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3c35bfd2-1b56-483c-87f0-420f65afabf6' class='xr-var-data-in' type='checkbox'><label for='data-3c35bfd2-1b56-483c-87f0-420f65afabf6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([5.488968e-03, 1.021729e+00, 1.994018e+00, ..., 3.570090e+02,\n",
" 3.580060e+02, 3.590085e+02], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ec0d3d56-8432-48b7-ade7-39e8ec3e8a85' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ec0d3d56-8432-48b7-ade7-39e8ec3e8a85' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-796ac519-927c-4c68-b9e0-224c31a2729c' class='xr-var-data-in' type='checkbox'><label for='data-796ac519-927c-4c68-b9e0-224c31a2729c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b17fa36d-5e90-4a6a-a462-33c84339274c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b17fa36d-5e90-4a6a-a462-33c84339274c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-222be8de-b71a-4ba8-b6a8-0c8b7424dd53' class='xr-var-data-in' type='checkbox'><label for='data-222be8de-b71a-4ba8-b6a8-0c8b7424dd53' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a4770a3f-2c16-4ada-af0b-fe9220379f0a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a4770a3f-2c16-4ada-af0b-fe9220379f0a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6cc32b03-39a7-4285-819b-d98ae2fc87d5' class='xr-var-data-in' type='checkbox'><label for='data-6cc32b03-39a7-4285-819b-d98ae2fc87d5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-87f76f8c-f47c-4a6f-bd78-e71e844493c7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-87f76f8c-f47c-4a6f-bd78-e71e844493c7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7ec185c3-788c-4a68-872c-af55d6220854' class='xr-var-data-in' type='checkbox'><label for='data-7ec185c3-788c-4a68-872c-af55d6220854' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-2d6d458e-bb31-47be-b5bd-ba90aef0555d' class='xr-section-summary-in' type='checkbox' checked><label for='section-2d6d458e-bb31-47be-b5bd-ba90aef0555d' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4ffde7d9-9393-42cf-95b7-0943125ffe0d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4ffde7d9-9393-42cf-95b7-0943125ffe0d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ccb40a2e-8ec3-4545-a9d9-07b846a0e7f8' class='xr-var-data-in' type='checkbox'><label for='data-ccb40a2e-8ec3-4545-a9d9-07b846a0e7f8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-66843104-e3b4-4d07-af20-214ad33adabb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-66843104-e3b4-4d07-af20-214ad33adabb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-405cc5b0-bcf9-493c-9362-3878b8c572e5' class='xr-var-data-in' type='checkbox'><label for='data-405cc5b0-bcf9-493c-9362-3878b8c572e5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5750c559-34a1-4982-ba76-a150d3aab3f2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5750c559-34a1-4982-ba76-a150d3aab3f2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f3f79d46-7582-4d98-801e-3e0127d77487' class='xr-var-data-in' type='checkbox'><label for='data-f3f79d46-7582-4d98-801e-3e0127d77487' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c9986fe8-c987-4fb9-ba72-ceaa997f91f0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c9986fe8-c987-4fb9-ba72-ceaa997f91f0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-26e43038-795b-480b-ba07-0b070449408a' class='xr-var-data-in' type='checkbox'><label for='data-26e43038-795b-480b-ba07-0b070449408a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5c31f3d8-1d09-4c16-8b79-b69f88201fae' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5c31f3d8-1d09-4c16-8b79-b69f88201fae' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2f6c19ab-95ef-42a9-9e2f-f494d402698b' class='xr-var-data-in' type='checkbox'><label for='data-2f6c19ab-95ef-42a9-9e2f-f494d402698b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fe40e402-a695-4c0b-b011-5dbaec1dd6b8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fe40e402-a695-4c0b-b011-5dbaec1dd6b8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-30942791-8fe1-46e4-b9dc-415efd17607e' class='xr-var-data-in' type='checkbox'><label for='data-30942791-8fe1-46e4-b9dc-415efd17607e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a4e8c0ba-5dfb-4d65-8682-3aa17cf06910' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a4e8c0ba-5dfb-4d65-8682-3aa17cf06910' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7a653a5a-bf2a-43db-b620-58a58f522ecb' class='xr-var-data-in' type='checkbox'><label for='data-7a653a5a-bf2a-43db-b620-58a58f522ecb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-428abd9b-ad3a-47b6-b44e-80e5bea221db' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-428abd9b-ad3a-47b6-b44e-80e5bea221db' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-25d94b38-d48b-4f6e-b50e-0152f913216b' class='xr-var-data-in' type='checkbox'><label for='data-25d94b38-d48b-4f6e-b50e-0152f913216b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3cdc8894-a2ff-44b3-9c03-505d5a4e38f6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3cdc8894-a2ff-44b3-9c03-505d5a4e38f6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1a925c8d-cff7-404d-b780-5018660a81d2' class='xr-var-data-in' type='checkbox'><label for='data-1a925c8d-cff7-404d-b780-5018660a81d2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1fd308ae-4a42-4407-9e26-6614e62232dd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1fd308ae-4a42-4407-9e26-6614e62232dd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-89812c2d-f150-40e4-a9ee-0ec8ae2c9067' class='xr-var-data-in' type='checkbox'><label for='data-89812c2d-f150-40e4-a9ee-0ec8ae2c9067' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f954a660-f563-463f-8352-af983886440f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f954a660-f563-463f-8352-af983886440f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2bf206a7-2264-470a-8110-9aaa1c3680a7' class='xr-var-data-in' type='checkbox'><label for='data-2bf206a7-2264-470a-8110-9aaa1c3680a7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-78492254-b517-4229-a936-27f755520eb5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-78492254-b517-4229-a936-27f755520eb5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cdc062bb-5699-40ae-bab0-f7896a1dfe72' class='xr-var-data-in' type='checkbox'><label for='data-cdc062bb-5699-40ae-bab0-f7896a1dfe72' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b89e7825-c582-4f5b-b27a-f560598b90b3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b89e7825-c582-4f5b-b27a-f560598b90b3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a9eefa23-ec46-49f4-93f8-478baafe4237' class='xr-var-data-in' type='checkbox'><label for='data-a9eefa23-ec46-49f4-93f8-478baafe4237' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-9cd5740d-9615-4e81-85db-400b85f0dbe9' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-9cd5740d-9615-4e81-85db-400b85f0dbe9' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:06:45 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.9998 2.008 3.013 ... 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_6</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-6058fe5c-52e4-4277-a3d4-8b19cda147c8' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-6058fe5c-52e4-4277-a3d4-8b19cda147c8' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-4db6c6ff-a701-4168-8a4b-2fcc74d3a261' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-4db6c6ff-a701-4168-8a4b-2fcc74d3a261' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-43583eec-9e7e-49e6-a8c1-14d30ee1854f' class='xr-section-summary-in' type='checkbox' checked><label for='section-43583eec-9e7e-49e6-a8c1-14d30ee1854f' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:06:45 ... 2021-06-...</div><input id='attrs-6dc18794-f362-480c-9263-d581d374eeda' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6dc18794-f362-480c-9263-d581d374eeda' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-17de4e36-70b8-4a7e-a68e-45a2b5dca1ee' class='xr-var-data-in' type='checkbox'><label for='data-17de4e36-70b8-4a7e-a68e-45a2b5dca1ee' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:06:45.000000000&#x27;, &#x27;2021-06-01T11:06:45.000000000&#x27;,\n",
" &#x27;2021-06-01T11:06:45.000000000&#x27;, ..., &#x27;2021-06-01T11:06:45.000000000&#x27;,\n",
" &#x27;2021-06-01T11:06:45.000000000&#x27;, &#x27;2021-06-01T11:06:45.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-f414cf25-db4b-4830-85b6-f5e92dfa8ad3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f414cf25-db4b-4830-85b6-f5e92dfa8ad3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-13301af8-b9cd-4aa1-96a5-36d2babd0319' class='xr-var-data-in' type='checkbox'><label for='data-13301af8-b9cd-4aa1-96a5-36d2babd0319' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.9998 2.008 3.013 ... 359.0 360.0</div><input id='attrs-673daed9-1b0b-4b20-92d0-18df19431e3a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-673daed9-1b0b-4b20-92d0-18df19431e3a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5fc60739-52b5-4452-b9ba-2d897b23b66a' class='xr-var-data-in' type='checkbox'><label for='data-5fc60739-52b5-4452-b9ba-2d897b23b66a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([ 0.999756, 2.007751, 3.013 , ..., 358.01697 , 359.00024 ,\n",
" 359.9945 ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-75d6f3e0-8f9c-4c9d-b684-5b3ee85275b2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-75d6f3e0-8f9c-4c9d-b684-5b3ee85275b2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3fd0a798-c450-468a-9e17-8467be2d794b' class='xr-var-data-in' type='checkbox'><label for='data-3fd0a798-c450-468a-9e17-8467be2d794b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ccc38327-343e-4f25-9f5f-f785b8d13701' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ccc38327-343e-4f25-9f5f-f785b8d13701' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bab9d4a2-fb91-4d89-8b15-eed5125ccb80' class='xr-var-data-in' type='checkbox'><label for='data-bab9d4a2-fb91-4d89-8b15-eed5125ccb80' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-00ae4157-ba1d-4178-951c-ea6c9f610194' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-00ae4157-ba1d-4178-951c-ea6c9f610194' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b7d66ec3-d7ef-4911-8305-12efe778514f' class='xr-var-data-in' type='checkbox'><label for='data-b7d66ec3-d7ef-4911-8305-12efe778514f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-397aef21-1eb6-4ecd-b3ba-e7d92e6a2e01' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-397aef21-1eb6-4ecd-b3ba-e7d92e6a2e01' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6a507300-2e66-47a2-a631-af0a57507175' class='xr-var-data-in' type='checkbox'><label for='data-6a507300-2e66-47a2-a631-af0a57507175' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-7a964218-136b-48a6-b4ea-aad013b24441' class='xr-section-summary-in' type='checkbox' checked><label for='section-7a964218-136b-48a6-b4ea-aad013b24441' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-15f8c606-08d6-4194-a684-15e272066fb3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-15f8c606-08d6-4194-a684-15e272066fb3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b200a8f6-2a19-45a5-ae70-8d509c6cef88' class='xr-var-data-in' type='checkbox'><label for='data-b200a8f6-2a19-45a5-ae70-8d509c6cef88' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ca20996a-bba0-4a50-a1fb-580742ba7b0a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ca20996a-bba0-4a50-a1fb-580742ba7b0a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-111b528e-16a0-48f0-be09-bcc5f7ce181a' class='xr-var-data-in' type='checkbox'><label for='data-111b528e-16a0-48f0-be09-bcc5f7ce181a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3164b405-d24b-47a8-88d4-4a99cff7bb5a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3164b405-d24b-47a8-88d4-4a99cff7bb5a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5bc4ccdf-ebd5-4910-80e6-e45e9e8857b1' class='xr-var-data-in' type='checkbox'><label for='data-5bc4ccdf-ebd5-4910-80e6-e45e9e8857b1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5f160d9f-79b6-4cf6-b63c-fbadd9bbaaa4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5f160d9f-79b6-4cf6-b63c-fbadd9bbaaa4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c19c6553-f48c-4b1d-ab5d-7b4495555cd0' class='xr-var-data-in' type='checkbox'><label for='data-c19c6553-f48c-4b1d-ab5d-7b4495555cd0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-34933146-4127-4324-a385-ae24e5b897e0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-34933146-4127-4324-a385-ae24e5b897e0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-71cd59cf-7561-46c6-8d68-301a307104e6' class='xr-var-data-in' type='checkbox'><label for='data-71cd59cf-7561-46c6-8d68-301a307104e6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-11d380cc-fa13-433c-b253-b7c24b3d9c20' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-11d380cc-fa13-433c-b253-b7c24b3d9c20' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d77183df-ca9b-42c3-99d3-e05edf7cd90a' class='xr-var-data-in' type='checkbox'><label for='data-d77183df-ca9b-42c3-99d3-e05edf7cd90a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-de67202b-3872-48a7-ae34-b8d05c49ad08' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-de67202b-3872-48a7-ae34-b8d05c49ad08' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5fd84f46-18ef-4bfa-a7f3-79b148da4d7e' class='xr-var-data-in' type='checkbox'><label for='data-5fd84f46-18ef-4bfa-a7f3-79b148da4d7e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8fcf7276-5e6c-44fd-b41e-3a2f72142f28' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8fcf7276-5e6c-44fd-b41e-3a2f72142f28' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-53868b7e-bef0-407e-b647-d73ebd6072d0' class='xr-var-data-in' type='checkbox'><label for='data-53868b7e-bef0-407e-b647-d73ebd6072d0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-411cfb01-6c84-47a6-9c95-619aabac2ab3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-411cfb01-6c84-47a6-9c95-619aabac2ab3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-02a2e0a9-54ab-48de-bea5-f02628caa4b9' class='xr-var-data-in' type='checkbox'><label for='data-02a2e0a9-54ab-48de-bea5-f02628caa4b9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5cde5672-a80a-40f1-a1e9-0987809b0f6a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5cde5672-a80a-40f1-a1e9-0987809b0f6a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c598dd0f-e077-4fb5-aa49-42b9ec69f752' class='xr-var-data-in' type='checkbox'><label for='data-c598dd0f-e077-4fb5-aa49-42b9ec69f752' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e306dc67-21a7-4f7c-9d80-e8ab8c510661' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e306dc67-21a7-4f7c-9d80-e8ab8c510661' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fea77a8f-745d-40ec-a4ef-0a45214e1462' class='xr-var-data-in' type='checkbox'><label for='data-fea77a8f-745d-40ec-a4ef-0a45214e1462' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d6feb194-2abf-448f-aa2a-18eacd918dd9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d6feb194-2abf-448f-aa2a-18eacd918dd9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-99698bd3-81af-47c4-beea-35460a565ab8' class='xr-var-data-in' type='checkbox'><label for='data-99698bd3-81af-47c4-beea-35460a565ab8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0c476659-7cb5-42db-92a6-ee11f2f3d6cd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0c476659-7cb5-42db-92a6-ee11f2f3d6cd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8b701148-4a2b-403e-961b-f4f9617fdb73' class='xr-var-data-in' type='checkbox'><label for='data-8b701148-4a2b-403e-961b-f4f9617fdb73' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-ab20d324-3dd0-46a6-8371-4aec4fb209d7' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-ab20d324-3dd0-46a6-8371-4aec4fb209d7' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:07:45 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.986 2.008 3.018 ... 358.0 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_7</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-a86b5431-afad-4b47-8d4d-f7e9a683138e' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-a86b5431-afad-4b47-8d4d-f7e9a683138e' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-08f09bce-486d-48ad-aaa2-f4c56855cd0f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-08f09bce-486d-48ad-aaa2-f4c56855cd0f' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-ec550431-4465-404c-b58f-9c57a3b16604' class='xr-section-summary-in' type='checkbox' checked><label for='section-ec550431-4465-404c-b58f-9c57a3b16604' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:07:45 ... 2021-06-...</div><input id='attrs-7f723b51-ec6d-4389-a07e-5084d498e73e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7f723b51-ec6d-4389-a07e-5084d498e73e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-65be9c46-a6cd-40f3-89c5-c95508c0185e' class='xr-var-data-in' type='checkbox'><label for='data-65be9c46-a6cd-40f3-89c5-c95508c0185e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:07:45.000000000&#x27;, &#x27;2021-06-01T11:07:45.000000000&#x27;,\n",
" &#x27;2021-06-01T11:07:45.000000000&#x27;, ..., &#x27;2021-06-01T11:07:44.000000000&#x27;,\n",
" &#x27;2021-06-01T11:07:45.000000000&#x27;, &#x27;2021-06-01T11:07:45.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-5bb07d21-6d41-4fc6-93d9-f423639e2a8a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5bb07d21-6d41-4fc6-93d9-f423639e2a8a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6ff299a4-d450-4cc8-a29c-a726a8aac62a' class='xr-var-data-in' type='checkbox'><label for='data-6ff299a4-d450-4cc8-a29c-a726a8aac62a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.986 2.008 3.018 ... 359.0 360.0</div><input id='attrs-7b06cc51-1baf-47b9-a4da-510a3becaca2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7b06cc51-1baf-47b9-a4da-510a3becaca2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c299f65b-e722-4302-9538-628661dc9c5b' class='xr-var-data-in' type='checkbox'><label for='data-c299f65b-e722-4302-9538-628661dc9c5b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([ 0.986023, 2.007751, 3.018493, ..., 358.00598 , 359.003 ,\n",
" 359.989 ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-76d4716c-2afc-4355-a6e5-bf1b86261906' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-76d4716c-2afc-4355-a6e5-bf1b86261906' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-baae48dd-f42f-4853-8c9d-fc57246d4fc6' class='xr-var-data-in' type='checkbox'><label for='data-baae48dd-f42f-4853-8c9d-fc57246d4fc6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c4a0e2b5-df95-468b-8157-fae8d5bdf8a1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c4a0e2b5-df95-468b-8157-fae8d5bdf8a1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-39cad88f-0635-44c1-95a6-c88e410a3b1e' class='xr-var-data-in' type='checkbox'><label for='data-39cad88f-0635-44c1-95a6-c88e410a3b1e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a035c58b-91e5-4297-995b-6996b32ef70e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a035c58b-91e5-4297-995b-6996b32ef70e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-256ecb8d-0e9d-4326-9b5c-b73c64df182b' class='xr-var-data-in' type='checkbox'><label for='data-256ecb8d-0e9d-4326-9b5c-b73c64df182b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a1268315-faf6-4aa0-8e08-3f26eb1057cd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a1268315-faf6-4aa0-8e08-3f26eb1057cd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6d35805f-ad02-4d77-b6f3-19bacd2e5cb8' class='xr-var-data-in' type='checkbox'><label for='data-6d35805f-ad02-4d77-b6f3-19bacd2e5cb8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-25000f31-dec8-45f3-8794-53f5737daa14' class='xr-section-summary-in' type='checkbox' checked><label for='section-25000f31-dec8-45f3-8794-53f5737daa14' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2aa2e754-eae0-442f-be10-1c30a6b31948' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2aa2e754-eae0-442f-be10-1c30a6b31948' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b3d7adbf-e70e-4f12-b023-6c378b60edf6' class='xr-var-data-in' type='checkbox'><label for='data-b3d7adbf-e70e-4f12-b023-6c378b60edf6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f36ff613-cc11-485c-9e41-0f30917d561f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f36ff613-cc11-485c-9e41-0f30917d561f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1b50859a-95b3-40ce-861a-9b29d40c3d11' class='xr-var-data-in' type='checkbox'><label for='data-1b50859a-95b3-40ce-861a-9b29d40c3d11' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-03730906-6ffe-4fc0-8126-b002b239fd85' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-03730906-6ffe-4fc0-8126-b002b239fd85' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2712e8dd-5307-42ce-9868-66479955105f' class='xr-var-data-in' type='checkbox'><label for='data-2712e8dd-5307-42ce-9868-66479955105f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8a30caac-030f-4068-86c2-e1dda99c7b73' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8a30caac-030f-4068-86c2-e1dda99c7b73' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-49a22ad4-a987-4aaf-9aea-39db26971c21' class='xr-var-data-in' type='checkbox'><label for='data-49a22ad4-a987-4aaf-9aea-39db26971c21' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-453dc37b-95d1-4f79-a594-58f9035ed23a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-453dc37b-95d1-4f79-a594-58f9035ed23a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d67b63d2-0e30-47dc-af23-2aa89a25c80b' class='xr-var-data-in' type='checkbox'><label for='data-d67b63d2-0e30-47dc-af23-2aa89a25c80b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fae69d04-cf91-4bd6-abd1-603e50a135f6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fae69d04-cf91-4bd6-abd1-603e50a135f6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-69287ad7-0441-43a0-87d4-8f776442c9bc' class='xr-var-data-in' type='checkbox'><label for='data-69287ad7-0441-43a0-87d4-8f776442c9bc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-abf96605-ab39-4d8b-a46d-bf015170b5b1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-abf96605-ab39-4d8b-a46d-bf015170b5b1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a422f58f-affa-42e8-ab2f-5da998ac2005' class='xr-var-data-in' type='checkbox'><label for='data-a422f58f-affa-42e8-ab2f-5da998ac2005' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-de2a3eef-e3be-42be-8b18-79602716257d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-de2a3eef-e3be-42be-8b18-79602716257d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e8acfec4-af6f-45a9-89f3-422b82ab52f9' class='xr-var-data-in' type='checkbox'><label for='data-e8acfec4-af6f-45a9-89f3-422b82ab52f9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9c28b240-849e-42cd-b7c5-49596fca12f7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9c28b240-849e-42cd-b7c5-49596fca12f7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3141264f-11a7-4d29-869a-6aa072f244ec' class='xr-var-data-in' type='checkbox'><label for='data-3141264f-11a7-4d29-869a-6aa072f244ec' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-03ed0c84-d276-4625-8909-c089148d05fa' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-03ed0c84-d276-4625-8909-c089148d05fa' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c14bc362-ca02-4971-8f13-58bb023adf33' class='xr-var-data-in' type='checkbox'><label for='data-c14bc362-ca02-4971-8f13-58bb023adf33' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ef2b4b9b-c72e-4099-94bf-92c51da658dc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ef2b4b9b-c72e-4099-94bf-92c51da658dc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3d508039-49fd-427b-a030-81956bf12eaf' class='xr-var-data-in' type='checkbox'><label for='data-3d508039-49fd-427b-a030-81956bf12eaf' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3dcc139d-2e4c-46a2-a2ed-1ab9fda5d8f7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3dcc139d-2e4c-46a2-a2ed-1ab9fda5d8f7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e3a51a3d-0b1b-4dcb-b7d0-f28a7fc1a4ff' class='xr-var-data-in' type='checkbox'><label for='data-e3a51a3d-0b1b-4dcb-b7d0-f28a7fc1a4ff' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-30d1639d-7059-4114-963e-d14bc904a0d2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-30d1639d-7059-4114-963e-d14bc904a0d2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-29359ab6-b5f3-427e-86e1-1cf7c6218fc7' class='xr-var-data-in' type='checkbox'><label for='data-29359ab6-b5f3-427e-86e1-1cf7c6218fc7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-a3617c58-ab2a-48b7-b936-da1db7f64fb5' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-a3617c58-ab2a-48b7-b936-da1db7f64fb5' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:08:43 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.9915 2.0 3.005 ... 358.0 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_8</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-bb00d930-8d4c-4efc-90eb-ea09d87f5ae0' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-bb00d930-8d4c-4efc-90eb-ea09d87f5ae0' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-be727cfc-fcfe-48b9-b4ad-7d5023716e31' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-be727cfc-fcfe-48b9-b4ad-7d5023716e31' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-b579a801-b7a5-4793-8bd6-ba4002d01b8b' class='xr-section-summary-in' type='checkbox' checked><label for='section-b579a801-b7a5-4793-8bd6-ba4002d01b8b' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:08:43 ... 2021-06-...</div><input id='attrs-3cc2f9e9-b790-4955-ba7c-205ee300c909' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3cc2f9e9-b790-4955-ba7c-205ee300c909' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-df1594db-6067-47c0-aa27-731660a2f01b' class='xr-var-data-in' type='checkbox'><label for='data-df1594db-6067-47c0-aa27-731660a2f01b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:08:43.000000000&#x27;, &#x27;2021-06-01T11:08:43.000000000&#x27;,\n",
" &#x27;2021-06-01T11:08:44.000000000&#x27;, ..., &#x27;2021-06-01T11:08:43.000000000&#x27;,\n",
" &#x27;2021-06-01T11:08:43.000000000&#x27;, &#x27;2021-06-01T11:08:43.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-fe89cf02-1326-4573-8a1b-2318888db481' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fe89cf02-1326-4573-8a1b-2318888db481' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-63dac85a-96ae-4f87-80d9-9597b96ba718' class='xr-var-data-in' type='checkbox'><label for='data-63dac85a-96ae-4f87-80d9-9597b96ba718' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.9915 2.0 3.005 ... 359.0 360.0</div><input id='attrs-60a0a17d-69b3-4d42-b96d-91e161041b84' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-60a0a17d-69b3-4d42-b96d-91e161041b84' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4f19a2f4-1026-4615-bf94-0421e001ebf8' class='xr-var-data-in' type='checkbox'><label for='data-4f19a2f4-1026-4615-bf94-0421e001ebf8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([ 0.991516, 1.999511, 3.004761, ..., 358.00323 , 359.00848 ,\n",
" 359.9945 ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fe72e1f7-4c77-4761-a8a0-415642bc7fff' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fe72e1f7-4c77-4761-a8a0-415642bc7fff' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9d57d446-a2a1-43d7-a2c8-f51b3cea7c6b' class='xr-var-data-in' type='checkbox'><label for='data-9d57d446-a2a1-43d7-a2c8-f51b3cea7c6b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3354bd89-2094-4762-a49e-4a3ac5f9a132' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3354bd89-2094-4762-a49e-4a3ac5f9a132' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1885013a-e47c-464b-84f4-592c60afcb42' class='xr-var-data-in' type='checkbox'><label for='data-1885013a-e47c-464b-84f4-592c60afcb42' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-269aa68a-d246-437d-99ff-5ba8e179af5a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-269aa68a-d246-437d-99ff-5ba8e179af5a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9dc84295-fd8f-463e-8544-f91f27613179' class='xr-var-data-in' type='checkbox'><label for='data-9dc84295-fd8f-463e-8544-f91f27613179' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-deb9da7a-b161-4b04-afe5-99918f5e6853' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-deb9da7a-b161-4b04-afe5-99918f5e6853' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bc80d023-41c2-472f-88ca-aebbb410df61' class='xr-var-data-in' type='checkbox'><label for='data-bc80d023-41c2-472f-88ca-aebbb410df61' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-738e2cab-7e4d-4ae6-b809-13f38bbb89ca' class='xr-section-summary-in' type='checkbox' checked><label for='section-738e2cab-7e4d-4ae6-b809-13f38bbb89ca' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fd7fcfb9-6865-4bc5-821f-813749a59617' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fd7fcfb9-6865-4bc5-821f-813749a59617' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-78817977-8a3d-477c-9ed0-a6290af6e0a1' class='xr-var-data-in' type='checkbox'><label for='data-78817977-8a3d-477c-9ed0-a6290af6e0a1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a601df6b-9b78-4f3b-9369-7080f0a0cc52' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a601df6b-9b78-4f3b-9369-7080f0a0cc52' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a81380b7-c7d4-4538-ab1c-b9f573d0b888' class='xr-var-data-in' type='checkbox'><label for='data-a81380b7-c7d4-4538-ab1c-b9f573d0b888' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-29edd21b-4874-4bb3-886c-64132734295b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-29edd21b-4874-4bb3-886c-64132734295b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4e2fc18b-e430-4eff-a430-b98e9d32d328' class='xr-var-data-in' type='checkbox'><label for='data-4e2fc18b-e430-4eff-a430-b98e9d32d328' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-be1176c4-4f83-4359-9a35-69370689934f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-be1176c4-4f83-4359-9a35-69370689934f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0af0dc76-6a43-400e-8560-26efbf1c63dd' class='xr-var-data-in' type='checkbox'><label for='data-0af0dc76-6a43-400e-8560-26efbf1c63dd' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-81fbb14c-56b9-4c79-b809-386c5705a2b9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-81fbb14c-56b9-4c79-b809-386c5705a2b9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-010e4fac-d730-4d01-8f44-8a8de8bf8dd0' class='xr-var-data-in' type='checkbox'><label for='data-010e4fac-d730-4d01-8f44-8a8de8bf8dd0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3072ff60-da4f-40a6-862a-e2d7f9380262' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3072ff60-da4f-40a6-862a-e2d7f9380262' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-396b2e44-0dfc-4264-a189-2ffd884770d0' class='xr-var-data-in' type='checkbox'><label for='data-396b2e44-0dfc-4264-a189-2ffd884770d0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d7f289d8-1427-4622-8b82-4985a05e9e06' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d7f289d8-1427-4622-8b82-4985a05e9e06' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6a2ef374-4588-410d-9f23-616eb5f40fa5' class='xr-var-data-in' type='checkbox'><label for='data-6a2ef374-4588-410d-9f23-616eb5f40fa5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-85bca904-0a9e-4dfc-afe9-3b200511ad7d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-85bca904-0a9e-4dfc-afe9-3b200511ad7d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bd25fec6-e248-4e92-bfa9-60049c8259c6' class='xr-var-data-in' type='checkbox'><label for='data-bd25fec6-e248-4e92-bfa9-60049c8259c6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a0fb12cc-0196-4978-bb95-62b146570b8e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a0fb12cc-0196-4978-bb95-62b146570b8e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d48860f1-c8b9-49a7-82b0-8f028c61939e' class='xr-var-data-in' type='checkbox'><label for='data-d48860f1-c8b9-49a7-82b0-8f028c61939e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-874c5cfb-7396-4f10-b7fc-a2f0f43a61cd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-874c5cfb-7396-4f10-b7fc-a2f0f43a61cd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9f0f48e3-7daa-4358-b69f-4a4658f99413' class='xr-var-data-in' type='checkbox'><label for='data-9f0f48e3-7daa-4358-b69f-4a4658f99413' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ef07663e-3868-4ff8-a792-5513f520ddee' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ef07663e-3868-4ff8-a792-5513f520ddee' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5cc6a016-ed94-4eb1-9378-400095085b44' class='xr-var-data-in' type='checkbox'><label for='data-5cc6a016-ed94-4eb1-9378-400095085b44' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-06b8f93c-1501-4ae0-8fb2-ae8e986aa9a2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-06b8f93c-1501-4ae0-8fb2-ae8e986aa9a2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-367b30ba-7ff7-4507-8bd4-5d3fbff25978' class='xr-var-data-in' type='checkbox'><label for='data-367b30ba-7ff7-4507-8bd4-5d3fbff25978' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-209eddcf-c015-4ab9-a9f6-aaa63022e82a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-209eddcf-c015-4ab9-a9f6-aaa63022e82a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5ea4ede8-1fc7-44c4-b002-a0191e6377b2' class='xr-var-data-in' type='checkbox'><label for='data-5ea4ede8-1fc7-44c4-b002-a0191e6377b2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-bde0c9c1-f054-4fb8-a35d-fc7b59d6bedd' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-bde0c9c1-f054-4fb8-a35d-fc7b59d6bedd' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (azimuth: 360, range: 500)\n",
"Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:09:42 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.9998 1.997 3.013 ... 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
"Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_9</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-4876e7e9-c81f-4d10-a81f-35aa1029cd89' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-4876e7e9-c81f-4d10-a81f-35aa1029cd89' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-1641e5ab-f347-4efe-bf5d-d1ba8d9f0cfa' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-1641e5ab-f347-4efe-bf5d-d1ba8d9f0cfa' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>azimuth</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-d7ab3c1e-50a0-4d89-af42-46b3815f3d65' class='xr-section-summary-in' type='checkbox' checked><label for='section-d7ab3c1e-50a0-4d89-af42-46b3815f3d65' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>time</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:09:42 ... 2021-06-...</div><input id='attrs-4fbb4f0e-b552-4e4e-906f-09ee3293c5ca' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4fbb4f0e-b552-4e4e-906f-09ee3293c5ca' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-56233ca7-2b0f-4b45-8f12-51545c8b091b' class='xr-var-data-in' type='checkbox'><label for='data-56233ca7-2b0f-4b45-8f12-51545c8b091b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:09:42.000000000&#x27;, &#x27;2021-06-01T11:09:42.000000000&#x27;,\n",
" &#x27;2021-06-01T11:09:43.000000000&#x27;, ..., &#x27;2021-06-01T11:09:42.000000000&#x27;,\n",
" &#x27;2021-06-01T11:09:42.000000000&#x27;, &#x27;2021-06-01T11:09:42.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-9d29ef0b-c18c-48bf-b4db-e5475c007b9e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9d29ef0b-c18c-48bf-b4db-e5475c007b9e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f01ecb24-8906-4a19-abb6-5aac23bc7cb2' class='xr-var-data-in' type='checkbox'><label for='data-f01ecb24-8906-4a19-abb6-5aac23bc7cb2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>azimuth</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.9998 1.997 3.013 ... 359.0 360.0</div><input id='attrs-85903a45-19b7-48a4-bae0-b6c00062cd72' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-85903a45-19b7-48a4-bae0-b6c00062cd72' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c545d405-c413-4392-9662-a0fcb3a4c9d6' class='xr-var-data-in' type='checkbox'><label for='data-c545d405-c413-4392-9662-a0fcb3a4c9d6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([ 0.999756, 1.996765, 3.013 , ..., 358.00323 , 359.00574 ,\n",
" 359.9945 ], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ec1b7177-f163-4e5a-bb82-aa2afc4edc34' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ec1b7177-f163-4e5a-bb82-aa2afc4edc34' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c7605f84-f818-4982-a2a0-38b68346faba' class='xr-var-data-in' type='checkbox'><label for='data-c7605f84-f818-4982-a2a0-38b68346faba' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-50d657ab-7eae-46ad-8327-6e3487bc22e2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-50d657ab-7eae-46ad-8327-6e3487bc22e2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-afa08511-d04f-48a3-8c04-2d12fd1e19f0' class='xr-var-data-in' type='checkbox'><label for='data-afa08511-d04f-48a3-8c04-2d12fd1e19f0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-90e68a92-5319-4416-b3b8-94902f2f12c9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-90e68a92-5319-4416-b3b8-94902f2f12c9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7523aecf-6830-492e-a0d0-255a5fb8ed20' class='xr-var-data-in' type='checkbox'><label for='data-7523aecf-6830-492e-a0d0-255a5fb8ed20' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-08856253-9481-418c-99b5-3df4d6211b74' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-08856253-9481-418c-99b5-3df4d6211b74' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b640a9ec-a5eb-4db0-ae60-e45a8b68bb07' class='xr-var-data-in' type='checkbox'><label for='data-b640a9ec-a5eb-4db0-ae60-e45a8b68bb07' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-e25c8ee0-c92b-466d-aaaf-524dbd9e128c' class='xr-section-summary-in' type='checkbox' checked><label for='section-e25c8ee0-c92b-466d-aaaf-524dbd9e128c' class='xr-section-summary' >Data variables: <span>(13)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-40735a87-1ab9-42e9-8beb-4fa59d0505ed' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-40735a87-1ab9-42e9-8beb-4fa59d0505ed' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2f4ca7f3-a3e5-4da6-8b77-fd8c24d16467' class='xr-var-data-in' type='checkbox'><label for='data-2f4ca7f3-a3e5-4da6-8b77-fd8c24d16467' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-41b72977-5050-42fd-b11d-03b0ac1c3f85' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-41b72977-5050-42fd-b11d-03b0ac1c3f85' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4ffa4023-0f90-499e-8dd4-63d0ed379a07' class='xr-var-data-in' type='checkbox'><label for='data-4ffa4023-0f90-499e-8dd4-63d0ed379a07' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-eafd3ed2-eb31-414d-8d12-41463341da53' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-eafd3ed2-eb31-414d-8d12-41463341da53' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5d9100a0-5825-4ee4-8d9f-523c70a58d93' class='xr-var-data-in' type='checkbox'><label for='data-5d9100a0-5825-4ee4-8d9f-523c70a58d93' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(azimuth, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-feced8e7-b039-4763-928b-736c0e5e4dfd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-feced8e7-b039-4763-928b-736c0e5e4dfd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ddbfaabc-3a98-4027-8991-af65040dc051' class='xr-var-data-in' type='checkbox'><label for='data-ddbfaabc-3a98-4027-8991-af65040dc051' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-bacc63d8-f3d7-47af-a3a2-1d9b6faf21ff' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bacc63d8-f3d7-47af-a3a2-1d9b6faf21ff' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6a61d789-3290-43b9-8dc2-10e89421e24a' class='xr-var-data-in' type='checkbox'><label for='data-6a61d789-3290-43b9-8dc2-10e89421e24a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f3cb4fdd-0416-49c6-9be2-4796ca85f1dc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f3cb4fdd-0416-49c6-9be2-4796ca85f1dc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-919ca052-6d2d-4ab6-84e1-83b846031218' class='xr-var-data-in' type='checkbox'><label for='data-919ca052-6d2d-4ab6-84e1-83b846031218' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4db85c17-cc97-4bef-9cee-46fd48841397' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4db85c17-cc97-4bef-9cee-46fd48841397' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0df90271-bce3-42e0-ab86-02fbf9db25d6' class='xr-var-data-in' type='checkbox'><label for='data-0df90271-bce3-42e0-ab86-02fbf9db25d6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>pulse_width</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-582c8a99-8d17-47a3-89ba-d648c73a25ad' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-582c8a99-8d17-47a3-89ba-d648c73a25ad' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ed76ab8c-72d5-4ef6-9cdb-6ac44183747d' class='xr-var-data-in' type='checkbox'><label for='data-ed76ab8c-72d5-4ef6-9cdb-6ac44183747d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse width</dd><dt><span>comments :</span></dt><dd>Pulse width</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a58a92e1-4321-4da6-b4b0-1d6d2ac93514' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a58a92e1-4321-4da6-b4b0-1d6d2ac93514' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-edc9f453-d1f8-4237-b8e1-185eff3a4c1c' class='xr-var-data-in' type='checkbox'><label for='data-edc9f453-d1f8-4237-b8e1-185eff3a4c1c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>timedelta64[ns]</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-454d3fcf-657c-4548-b992-cd70bd975c61' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-454d3fcf-657c-4548-b992-cd70bd975c61' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-89611342-8e8c-4e88-80b3-5d53ee33ccfe' class='xr-var-data-in' type='checkbox'><label for='data-89611342-8e8c-4e88-80b3-5d53ee33ccfe' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition time</dd><dt><span>comments :</span></dt><dd>Pulse repetition time. For staggered prt, also see prt_ratio.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=timedelta64[ns]]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_ratio</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-19e8caaa-880c-4346-bd98-ab1a25b35af8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-19e8caaa-880c-4346-bd98-ab1a25b35af8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-97216b58-a6c3-466c-af08-c2640ceab9c8' class='xr-var-data-in' type='checkbox'><label for='data-97216b58-a6c3-466c-af08-c2640ceab9c8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulse repetition frequency ratio</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>nyquist_velocity</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9e1bddfe-5d1b-46bd-a25e-0d60403a5d87' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9e1bddfe-5d1b-46bd-a25e-0d60403a5d87' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-300e3d4c-f855-486d-8c48-dac29ad3ae40' class='xr-var-data-in' type='checkbox'><label for='data-300e3d4c-f855-486d-8c48-dac29ad3ae40' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Nyquist velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>comments :</span></dt><dd>Unambiguous velocity</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>unambiguous_range</span></div><div class='xr-var-dims'>(azimuth)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6bb8eaed-a99e-4fd4-8438-6ab63ce0feab' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6bb8eaed-a99e-4fd4-8438-6ab63ce0feab' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-940c5de5-a24e-4daa-bcfe-d4591b5f79a1' class='xr-var-data-in' type='checkbox'><label for='data-940c5de5-a24e-4daa-bcfe-d4591b5f79a1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Unambiguous range</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>comments :</span></dt><dd>Unambiguous range</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-7c1916ac-12b8-4f8a-afa6-246e2b9f4ee3' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-7c1916ac-12b8-4f8a-afa6-246e2b9f4ee3' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-7047883c-d5c2-4d77-ae28-89990b0ab045' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-7047883c-d5c2-4d77-ae28-89990b0ab045' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span>sweep</span>: 10</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-61df53be-6ca8-4b1e-a5e9-49d18b6f9076' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-61df53be-6ca8-4b1e-a5e9-49d18b6f9076' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-f6ac3c46-0a3f-4c63-a883-132e37c154de' class='xr-section-summary-in' type='checkbox' checked><label for='section-f6ac3c46-0a3f-4c63-a883-132e37c154de' class='xr-section-summary' >Data variables: <span>(11)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>sweep_group_name</span></div><div class='xr-var-dims'>(sweep)</div><div class='xr-var-dtype'>&lt;U7</div><div class='xr-var-preview xr-preview'>&#x27;sweep_0&#x27; &#x27;sweep_1&#x27; ... &#x27;sweep_9&#x27;</div><input id='attrs-affc073f-5ebc-4613-ab52-d363951973df' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-affc073f-5ebc-4613-ab52-d363951973df' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2f3bb8e7-2bb0-4f1d-9f23-be9b43901e47' class='xr-var-data-in' type='checkbox'><label for='data-2f3bb8e7-2bb0-4f1d-9f23-be9b43901e47' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>array([&#x27;sweep_0&#x27;, &#x27;sweep_1&#x27;, &#x27;sweep_2&#x27;, &#x27;sweep_3&#x27;, &#x27;sweep_4&#x27;, &#x27;sweep_5&#x27;,\n",
" &#x27;sweep_6&#x27;, &#x27;sweep_7&#x27;, &#x27;sweep_8&#x27;, &#x27;sweep_9&#x27;], dtype=&#x27;&lt;U7&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>(sweep)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-676d1ed1-7e29-495e-858f-9cbff879c015' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-676d1ed1-7e29-495e-858f-9cbff879c015' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ce94475b-de2d-4ef8-ade7-e68275c3b9c9' class='xr-var-data-in' type='checkbox'><label for='data-ce94475b-de2d-4ef8-ade7-e68275c3b9c9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[10 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3521e749-6e52-4903-8fb1-e86cda8d456f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3521e749-6e52-4903-8fb1-e86cda8d456f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-17866304-be75-46cd-b1e4-3d730dab4d91' class='xr-var-data-in' type='checkbox'><label for='data-17866304-be75-46cd-b1e4-3d730dab4d91' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d887fa2b-1a2d-46ed-944d-b93056d330a8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d887fa2b-1a2d-46ed-944d-b93056d330a8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fe5f4fa7-0f61-401f-8f5d-b798a1b72d2b' class='xr-var-data-in' type='checkbox'><label for='data-fe5f4fa7-0f61-401f-8f5d-b798a1b72d2b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-50c7df61-1942-4dea-9555-494b69342f28' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-50c7df61-1942-4dea-9555-494b69342f28' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8922f7b7-249d-4281-8283-b33e743a116b' class='xr-var-data-in' type='checkbox'><label for='data-8922f7b7-249d-4281-8283-b33e743a116b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_coverage_start</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a3aa4c17-041c-43c7-91ea-22d1409f6816' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a3aa4c17-041c-43c7-91ea-22d1409f6816' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8de9e159-5e47-4d38-8ec3-b1473a7c4be2' class='xr-var-data-in' type='checkbox'><label for='data-8de9e159-5e47-4d38-8ec3-b1473a7c4be2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>UTC time of first ray in the file</dd><dt><span>units :</span></dt><dd>unitless</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_coverage_end</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5473baa0-85f7-4559-8394-d62d9e796350' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5473baa0-85f7-4559-8394-d62d9e796350' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-37fa3e33-644e-4454-83cb-edd02dcfb779' class='xr-var-data-in' type='checkbox'><label for='data-37fa3e33-644e-4454-83cb-edd02dcfb779' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>UTC time of last ray in the file</dd><dt><span>units :</span></dt><dd>unitless</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>volume_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4fa61bf6-facf-445c-b3df-7397e2197a3c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4fa61bf6-facf-445c-b3df-7397e2197a3c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4c324842-177f-4339-ae20-128557b9fc03' class='xr-var-data-in' type='checkbox'><label for='data-4c324842-177f-4339-ae20-128557b9fc03' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Volume number</dd><dt><span>units :</span></dt><dd>unitless</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>platform_type</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-bd18eac6-f8f0-4d93-af23-a640606fee33' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bd18eac6-f8f0-4d93-af23-a640606fee33' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-93e1fc63-0466-458b-be80-13931a80f6e7' class='xr-var-data-in' type='checkbox'><label for='data-93e1fc63-0466-458b-be80-13931a80f6e7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Platform type</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>instrument_type</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-dacc2579-eb9e-4676-b0c1-228a1f29ea57' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dacc2579-eb9e-4676-b0c1-228a1f29ea57' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-69543f2d-e581-4036-a275-f28718533b8d' class='xr-var-data-in' type='checkbox'><label for='data-69543f2d-e581-4036-a275-f28718533b8d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Instrument type</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>primary_axis</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-cc6c9534-1902-4fd0-a9ab-a7771fb59510' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cc6c9534-1902-4fd0-a9ab-a7771fb59510' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0b3a487c-2b10-4f02-af44-d5155adeee25' class='xr-var-data-in' type='checkbox'><label for='data-0b3a487c-2b10-4f02-af44-d5155adeee25' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Primary axis</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-53c2507d-d4dd-4f67-bd83-0d3ed235d7dc' class='xr-section-summary-in' type='checkbox' checked><label for='section-53c2507d-d4dd-4f67-bd83-0d3ed235d7dc' class='xr-section-summary' >Attributes: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>Conventions :</span></dt><dd>CF/Radial instrument_parameters</dd><dt><span>version :</span></dt><dd>1.3</dd><dt><span>title :</span></dt><dd></dd><dt><span>institution :</span></dt><dd></dd><dt><span>references :</span></dt><dd></dd><dt><span>source :</span></dt><dd></dd><dt><span>comment :</span></dt><dd></dd><dt><span>instrument_name :</span></dt><dd>BHOPAL-RADAR</dd><dt><span>history :</span></dt><dd></dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"DataTree('root', parent=None)\n",
"│ Dimensions: (sweep: 10)\n",
"│ Dimensions without coordinates: sweep\n",
"│ Data variables:\n",
"│ sweep_group_name (sweep) <U7 'sweep_0' 'sweep_1' ... 'sweep_8' 'sweep_9'\n",
"│ sweep_fixed_angle (sweep) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ time_coverage_start |S32 ...\n",
"│ time_coverage_end |S32 ...\n",
"│ volume_number int32 ...\n",
"│ platform_type |S32 ...\n",
"│ instrument_type |S32 ...\n",
"│ primary_axis |S32 ...\n",
"│ Attributes:\n",
"│ Conventions: CF/Radial instrument_parameters\n",
"│ version: 1.3\n",
"│ title: \n",
"│ institution: \n",
"│ references: \n",
"│ source: \n",
"│ comment: \n",
"│ instrument_name: BHOPAL-RADAR\n",
"│ history: \n",
"├── DataTree('radar_parameters')\n",
"│ Dimensions: ()\n",
"│ Data variables:\n",
"│ radar_beam_width_v float32 ...\n",
"│ radar_beam_width_h float32 ...\n",
"├── DataTree('georeferencing_correction')\n",
"├── DataTree('sweep_0')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:02:49 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.9778 2.0 2.999 ... 358.0 359.0 360.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"├── DataTree('sweep_1')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:03:19 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.9998 2.013 3.035 ... 359.0 360.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"├── DataTree('sweep_2')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:03:49 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.9888 2.013 3.021 ... 359.0 360.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"├── DataTree('sweep_3')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:04:48 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.9998 1.991 2.991 ... 359.0 360.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"├── DataTree('sweep_4')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:05:17 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.005487 0.9998 2.01 ... 358.0 359.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"├── DataTree('sweep_5')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:06:16 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.005489 1.022 1.994 ... 358.0 359.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"├── DataTree('sweep_6')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:06:45 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.9998 2.008 3.013 ... 359.0 360.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"├── DataTree('sweep_7')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:07:45 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.986 2.008 3.018 ... 358.0 359.0 360.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"├── DataTree('sweep_8')\n",
"│ Dimensions: (azimuth: 360, range: 500)\n",
"│ Coordinates:\n",
"│ time (azimuth) datetime64[ns] 2021-06-01T11:08:43 ... 2021-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ * azimuth (azimuth) float32 0.9915 2.0 3.005 ... 358.0 359.0 360.0\n",
"│ elevation (azimuth) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ Data variables: (12/13)\n",
"│ reflectivity (azimuth, range) float32 ...\n",
"│ velocity (azimuth, range) float32 ...\n",
"│ spectrum_width (azimuth, range) float32 ...\n",
"│ R (azimuth, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ ... ...\n",
"│ pulse_width (azimuth) timedelta64[ns] ...\n",
"│ prt_mode |S32 ...\n",
"│ prt (azimuth) timedelta64[ns] ...\n",
"│ prt_ratio (azimuth) float32 ...\n",
"│ nyquist_velocity (azimuth) float32 ...\n",
"│ unambiguous_range (azimuth) float32 ...\n",
"└── DataTree('sweep_9')\n",
" Dimensions: (azimuth: 360, range: 500)\n",
" Coordinates:\n",
" time (azimuth) datetime64[ns] 2021-06-01T11:09:42 ... 2021-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" * azimuth (azimuth) float32 0.9998 1.997 3.013 ... 359.0 360.0\n",
" elevation (azimuth) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
" Data variables: (12/13)\n",
" reflectivity (azimuth, range) float32 ...\n",
" velocity (azimuth, range) float32 ...\n",
" spectrum_width (azimuth, range) float32 ...\n",
" R (azimuth, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" ... ...\n",
" pulse_width (azimuth) timedelta64[ns] ...\n",
" prt_mode |S32 ...\n",
" prt (azimuth) timedelta64[ns] ...\n",
" prt_ratio (azimuth) float32 ...\n",
" nyquist_velocity (azimuth) float32 ...\n",
" unambiguous_range (azimuth) float32 ..."
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"display(vol)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Map clutter extraction over volume\n",
"\n",
"This uses `xarray-datatree` functionality as well as `xarray` and `wradlib`."
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [],
"source": [
"vol = vol.map_over_subtree(extract_clutter, \"reflectivity\", \"CMAP\", wsize=3, thrsnorain=0.0, tr1=14, n_p=2, tr2=1.5, rm_nans=False)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Export to new Cfradial2 Volume\n",
"\n",
"Uses `xradar`."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {},
"outputs": [],
"source": [
"new_name = \"new_cfradial2_volume.nc\"\n",
"xradar.io.export.to_cfradial2(vol, new_name)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Reopen Cfradial2 Volume\n",
"\n",
"Uses `xarray-datatree`."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (sweep: 10)\n",
"Dimensions without coordinates: sweep\n",
"Data variables:\n",
" sweep_group_name (sweep) object ...\n",
" sweep_fixed_angle (sweep) float32 ...\n",
" latitude float64 ...\n",
" longitude float64 ...\n",
" altitude float64 ...\n",
" time_coverage_start |S32 ...\n",
" time_coverage_end |S32 ...\n",
" volume_number int32 ...\n",
" platform_type |S32 ...\n",
" instrument_type |S32 ...\n",
" primary_axis |S32 ...\n",
"Attributes:\n",
" Conventions: Cf/Radial\n",
" version: 2.0\n",
" title: \n",
" institution: \n",
" references: \n",
" source: \n",
" comment: \n",
" instrument_name: BHOPAL-RADAR\n",
" history: : xradar v0.0.0 CfRadial2 export</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>datatree.DataTree</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-5a169922-c14e-487e-9311-35e1bebcc5e0' class='xr-section-summary-in' type='checkbox' ><label for='section-5a169922-c14e-487e-9311-35e1bebcc5e0' class='xr-section-summary' >Groups: <span>(12)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" radar_beam_width_v float32 ...\n",
" radar_beam_width_h float32 ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>radar_parameters</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-6eea2218-6321-4e0e-8ecc-aafc1bb240ed' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-6eea2218-6321-4e0e-8ecc-aafc1bb240ed' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-0ff3ac66-1117-43c8-9596-9167f3f43e35' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-0ff3ac66-1117-43c8-9596-9167f3f43e35' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-87a30dd0-ec77-4b6c-9369-6a53b287e455' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-87a30dd0-ec77-4b6c-9369-6a53b287e455' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-16c3592e-4508-492a-9892-5faab74d3c55' class='xr-section-summary-in' type='checkbox' checked><label for='section-16c3592e-4508-492a-9892-5faab74d3c55' class='xr-section-summary' >Data variables: <span>(2)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>radar_beam_width_v</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f1e7c7b5-fcba-4601-b9a5-bfc53c453e27' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f1e7c7b5-fcba-4601-b9a5-bfc53c453e27' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-47431a56-68b9-4f8d-90e3-2479926201f8' class='xr-var-data-in' type='checkbox'><label for='data-47431a56-68b9-4f8d-90e3-2479926201f8' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Antenna beam width V polarization</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>meta_group :</span></dt><dd>radar_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>radar_beam_width_h</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-880a5389-b0ff-4181-a39b-ca07b4599db4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-880a5389-b0ff-4181-a39b-ca07b4599db4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-587f5c76-9bfc-46e0-8075-322aef7519a5' class='xr-var-data-in' type='checkbox'><label for='data-587f5c76-9bfc-46e0-8075-322aef7519a5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Antenna beam width H polarization</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>meta_group :</span></dt><dd>radar_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-ce020830-8a89-401c-a8d9-09e65731f29c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-ce020830-8a89-401c-a8d9-09e65731f29c' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: ()\n",
"Data variables:\n",
" *empty*</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>georeferencing_correction</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-0785e9b6-fd6f-40fa-b485-234d8b1178eb' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-0785e9b6-fd6f-40fa-b485-234d8b1178eb' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-ab151e54-8a1a-47b2-9545-1c126d549b96' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-ab151e54-8a1a-47b2-9545-1c126d549b96' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-1205758d-bf50-4c65-a6e9-5c4fec782e4a' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-1205758d-bf50-4c65-a6e9-5c4fec782e4a' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-15d8fff2-e44a-46f0-8e2a-81822f72ff65' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-15d8fff2-e44a-46f0-8e2a-81822f72ff65' class='xr-section-summary' title='Expand/collapse section'>Data variables: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-8888fd1c-aa44-488e-97bf-f12ca4e52943' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-8888fd1c-aa44-488e-97bf-f12ca4e52943' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:02:23 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_0</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-0ec14bd5-6da9-4206-bcb0-c48509aab264' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-0ec14bd5-6da9-4206-bcb0-c48509aab264' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-12c11540-c9fb-436e-a6f2-c4ad6fbe259b' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-12c11540-c9fb-436e-a6f2-c4ad6fbe259b' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-012fe380-dba7-4af2-bbe8-c246261884fe' class='xr-section-summary-in' type='checkbox' checked><label for='section-012fe380-dba7-4af2-bbe8-c246261884fe' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:02:23 ... 2021-06-...</div><input id='attrs-f7dfb65d-5312-4fba-9422-22016b160fa3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f7dfb65d-5312-4fba-9422-22016b160fa3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b36cdc02-ce37-409b-9f7e-13a2999b6fa4' class='xr-var-data-in' type='checkbox'><label for='data-b36cdc02-ce37-409b-9f7e-13a2999b6fa4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:02:23.000000000&#x27;, &#x27;2021-06-01T11:02:24.000000000&#x27;,\n",
" &#x27;2021-06-01T11:02:24.000000000&#x27;, ..., &#x27;2021-06-01T11:02:53.000000000&#x27;,\n",
" &#x27;2021-06-01T11:02:53.000000000&#x27;, &#x27;2021-06-01T11:02:53.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-12ea7250-9ba4-4188-936f-98c7c0720310' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-12ea7250-9ba4-4188-936f-98c7c0720310' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-58c97d44-9f68-4e89-b54b-67bac81a244c' class='xr-var-data-in' type='checkbox'><label for='data-58c97d44-9f68-4e89-b54b-67bac81a244c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-158d5e2c-a49e-4c4e-9d59-f797c3ae0493' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-158d5e2c-a49e-4c4e-9d59-f797c3ae0493' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ae7f4f0e-b295-4689-a9a2-58459aa7165b' class='xr-var-data-in' type='checkbox'><label for='data-ae7f4f0e-b295-4689-a9a2-58459aa7165b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d078a6b3-5d6f-4c77-a3c1-7ef026593d71' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d078a6b3-5d6f-4c77-a3c1-7ef026593d71' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9f8f8b7f-c35f-4c50-b94a-3e232cde9253' class='xr-var-data-in' type='checkbox'><label for='data-9f8f8b7f-c35f-4c50-b94a-3e232cde9253' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-9a75e0cc-2363-467e-818d-2aef65a63077' class='xr-section-summary-in' type='checkbox' checked><label for='section-9a75e0cc-2363-467e-818d-2aef65a63077' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1593b2f7-ce23-4fb7-b1cd-01ce4806f564' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1593b2f7-ce23-4fb7-b1cd-01ce4806f564' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5d0e9cae-8078-415c-bd69-4fd6aee97c93' class='xr-var-data-in' type='checkbox'><label for='data-5d0e9cae-8078-415c-bd69-4fd6aee97c93' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b66903cf-3f8f-4d36-a98d-a74f35b4b73d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b66903cf-3f8f-4d36-a98d-a74f35b4b73d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3369413b-7039-4cca-8c1c-c26fbc76bf7e' class='xr-var-data-in' type='checkbox'><label for='data-3369413b-7039-4cca-8c1c-c26fbc76bf7e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fecac299-7111-4b0f-8acc-adc1e45f191e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fecac299-7111-4b0f-8acc-adc1e45f191e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-501a10f7-d1f7-4fd6-b2ca-fed90848d5fb' class='xr-var-data-in' type='checkbox'><label for='data-501a10f7-d1f7-4fd6-b2ca-fed90848d5fb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-eb968801-86d1-4030-9d7d-8e223a380480' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-eb968801-86d1-4030-9d7d-8e223a380480' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-257e6e26-b762-43f4-b74e-9db7c6825e37' class='xr-var-data-in' type='checkbox'><label for='data-257e6e26-b762-43f4-b74e-9db7c6825e37' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-239f43ab-d939-478a-afed-909525b1345b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-239f43ab-d939-478a-afed-909525b1345b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a89f0fb9-770b-4aca-8a35-3e9f9122ab78' class='xr-var-data-in' type='checkbox'><label for='data-a89f0fb9-770b-4aca-8a35-3e9f9122ab78' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e8352108-7989-46f2-a826-c4f44854211a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e8352108-7989-46f2-a826-c4f44854211a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6a96da16-ea0b-42f1-9a9e-5f6b3aa2ceab' class='xr-var-data-in' type='checkbox'><label for='data-6a96da16-ea0b-42f1-9a9e-5f6b3aa2ceab' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-bd8ab8a8-0f6b-4b90-9fc0-239af2647975' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-bd8ab8a8-0f6b-4b90-9fc0-239af2647975' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-439aa64c-2981-4fb4-a6a0-d240542657c2' class='xr-var-data-in' type='checkbox'><label for='data-439aa64c-2981-4fb4-a6a0-d240542657c2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8250aba6-bad0-493e-9c65-0040ab95a69f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8250aba6-bad0-493e-9c65-0040ab95a69f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-768bf495-7d5d-4680-91d9-1a3f0ba8eaa7' class='xr-var-data-in' type='checkbox'><label for='data-768bf495-7d5d-4680-91d9-1a3f0ba8eaa7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ee13d6e1-bf1c-474e-948a-0829f00ec0d5' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-ee13d6e1-bf1c-474e-948a-0829f00ec0d5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1f1ac9c5-e155-475a-9d40-c9294d7473d2' class='xr-var-data-in' type='checkbox'><label for='data-1f1ac9c5-e155-475a-9d40-c9294d7473d2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-54328619-65ec-4fe9-9d39-d8d1a35e38e8' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-54328619-65ec-4fe9-9d39-d8d1a35e38e8' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:02:56 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_1</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-22fc76e1-c8c2-4bd8-b197-d81dc4dbbc6f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-22fc76e1-c8c2-4bd8-b197-d81dc4dbbc6f' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-10e782c2-6c3f-4672-a77a-f84a767b310f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-10e782c2-6c3f-4672-a77a-f84a767b310f' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-3d1e7ba0-37ee-4706-9f1b-b8d46b631b8b' class='xr-section-summary-in' type='checkbox' checked><label for='section-3d1e7ba0-37ee-4706-9f1b-b8d46b631b8b' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:02:56 ... 2021-06-...</div><input id='attrs-4bdcc6ef-56b1-425d-99be-bc1d5630f0f8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4bdcc6ef-56b1-425d-99be-bc1d5630f0f8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1eda63b5-7daf-4e0f-be3a-e87a6c33191a' class='xr-var-data-in' type='checkbox'><label for='data-1eda63b5-7daf-4e0f-be3a-e87a6c33191a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:02:56.000000000&#x27;, &#x27;2021-06-01T11:02:56.000000000&#x27;,\n",
" &#x27;2021-06-01T11:02:56.000000000&#x27;, ..., &#x27;2021-06-01T11:03:25.000000000&#x27;,\n",
" &#x27;2021-06-01T11:03:25.000000000&#x27;, &#x27;2021-06-01T11:03:25.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-aa716639-fdbe-49f1-a2c7-51010f4816c1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-aa716639-fdbe-49f1-a2c7-51010f4816c1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7a3d5e4d-0f96-439b-8516-5c8154d6cc06' class='xr-var-data-in' type='checkbox'><label for='data-7a3d5e4d-0f96-439b-8516-5c8154d6cc06' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e99c01a4-5a16-434a-9f1a-c18f07733d99' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e99c01a4-5a16-434a-9f1a-c18f07733d99' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-da61d88a-37ec-4623-bc1b-3a2ce4c67e62' class='xr-var-data-in' type='checkbox'><label for='data-da61d88a-37ec-4623-bc1b-3a2ce4c67e62' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-70bbef8f-1799-4cf2-96fb-0c6200085b76' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-70bbef8f-1799-4cf2-96fb-0c6200085b76' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9c5c47a9-bee2-4477-946c-1c573af70e3e' class='xr-var-data-in' type='checkbox'><label for='data-9c5c47a9-bee2-4477-946c-1c573af70e3e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-8b2fc442-6bd3-481e-b0a1-ec9e7651ab68' class='xr-section-summary-in' type='checkbox' checked><label for='section-8b2fc442-6bd3-481e-b0a1-ec9e7651ab68' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c1d2017b-32bc-4ed1-9a66-9e43e0bd821f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c1d2017b-32bc-4ed1-9a66-9e43e0bd821f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fa04dbab-42e5-4ce2-bddb-bf7731245ade' class='xr-var-data-in' type='checkbox'><label for='data-fa04dbab-42e5-4ce2-bddb-bf7731245ade' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0460be9b-feca-40db-86e3-1874434d6a50' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0460be9b-feca-40db-86e3-1874434d6a50' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0aca0333-a45d-403d-85fa-3411530951a9' class='xr-var-data-in' type='checkbox'><label for='data-0aca0333-a45d-403d-85fa-3411530951a9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-beec4407-0e83-4611-9f40-a5f6668b0c24' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-beec4407-0e83-4611-9f40-a5f6668b0c24' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-28480cc7-1872-4acf-bd97-59f2cae113eb' class='xr-var-data-in' type='checkbox'><label for='data-28480cc7-1872-4acf-bd97-59f2cae113eb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1d30b7a6-7fa1-4da8-813c-dcbccab98d65' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1d30b7a6-7fa1-4da8-813c-dcbccab98d65' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-60be800f-f37c-47ad-bf8b-daa25bc14299' class='xr-var-data-in' type='checkbox'><label for='data-60be800f-f37c-47ad-bf8b-daa25bc14299' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-97cc04b3-5da6-479b-a037-b9f2d4fc35b9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-97cc04b3-5da6-479b-a037-b9f2d4fc35b9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e73076f2-9dd9-4e7f-998d-e0deef1428f6' class='xr-var-data-in' type='checkbox'><label for='data-e73076f2-9dd9-4e7f-998d-e0deef1428f6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-11173041-fa57-4130-a48a-8f16100e2e68' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-11173041-fa57-4130-a48a-8f16100e2e68' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e40fbb38-c25e-4156-a3c2-2f73471507a1' class='xr-var-data-in' type='checkbox'><label for='data-e40fbb38-c25e-4156-a3c2-2f73471507a1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e27d0926-d05b-48f3-aa9c-d1a8eba47db5' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e27d0926-d05b-48f3-aa9c-d1a8eba47db5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5936f148-2b7d-4287-84d1-baddc1c5cbf4' class='xr-var-data-in' type='checkbox'><label for='data-5936f148-2b7d-4287-84d1-baddc1c5cbf4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-cd4abd43-1610-47f0-8cd1-161509f7715a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-cd4abd43-1610-47f0-8cd1-161509f7715a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8a4c9090-54af-4211-9dd3-b8827aeeba6c' class='xr-var-data-in' type='checkbox'><label for='data-8a4c9090-54af-4211-9dd3-b8827aeeba6c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-836fec13-a14b-4c8e-9e6c-a3445f482b5e' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-836fec13-a14b-4c8e-9e6c-a3445f482b5e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-dd130b61-f9c6-4920-a645-76bcd1642fa1' class='xr-var-data-in' type='checkbox'><label for='data-dd130b61-f9c6-4920-a645-76bcd1642fa1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-790a632f-147a-47b7-9970-a0c302ee4837' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-790a632f-147a-47b7-9970-a0c302ee4837' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:03:28 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_2</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-07e3d610-075a-4ee0-a04f-84ff2d0c152d' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-07e3d610-075a-4ee0-a04f-84ff2d0c152d' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-4c96f587-fc2f-4d81-8a06-ad764d66d956' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-4c96f587-fc2f-4d81-8a06-ad764d66d956' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-1cf9e29e-5e99-435e-9287-c654c8ab4e60' class='xr-section-summary-in' type='checkbox' checked><label for='section-1cf9e29e-5e99-435e-9287-c654c8ab4e60' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:03:28 ... 2021-06-...</div><input id='attrs-2e360699-e5cf-4212-8e06-7a14d4e7c368' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2e360699-e5cf-4212-8e06-7a14d4e7c368' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b06817e5-2919-4f1b-8641-856749107f93' class='xr-var-data-in' type='checkbox'><label for='data-b06817e5-2919-4f1b-8641-856749107f93' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:03:28.000000000&#x27;, &#x27;2021-06-01T11:03:29.000000000&#x27;,\n",
" &#x27;2021-06-01T11:03:29.000000000&#x27;, ..., &#x27;2021-06-01T11:03:58.000000000&#x27;,\n",
" &#x27;2021-06-01T11:03:58.000000000&#x27;, &#x27;2021-06-01T11:03:58.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-6afa905d-1a9b-4b7e-be86-9b193c8df215' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6afa905d-1a9b-4b7e-be86-9b193c8df215' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-52c59834-4ae3-4756-a29c-ae31f4685dcc' class='xr-var-data-in' type='checkbox'><label for='data-52c59834-4ae3-4756-a29c-ae31f4685dcc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-015b5447-56e1-424b-8e04-1784227060ac' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-015b5447-56e1-424b-8e04-1784227060ac' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-439e5d3c-4a37-4145-9660-1cc5c27b3e4f' class='xr-var-data-in' type='checkbox'><label for='data-439e5d3c-4a37-4145-9660-1cc5c27b3e4f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6224df2c-f93d-4c28-ab8c-b2d584f86a19' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6224df2c-f93d-4c28-ab8c-b2d584f86a19' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e9e2cd27-9990-44ac-a71f-5c513837c8c5' class='xr-var-data-in' type='checkbox'><label for='data-e9e2cd27-9990-44ac-a71f-5c513837c8c5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-580ea98c-0d5d-46f2-8c03-2264fb955b22' class='xr-section-summary-in' type='checkbox' checked><label for='section-580ea98c-0d5d-46f2-8c03-2264fb955b22' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-51185162-72f9-46f5-ac47-13a594d7e1ea' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-51185162-72f9-46f5-ac47-13a594d7e1ea' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1575774c-4260-4a26-b3fd-08a1b0cf6d7a' class='xr-var-data-in' type='checkbox'><label for='data-1575774c-4260-4a26-b3fd-08a1b0cf6d7a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1a9c242e-b8eb-4f67-9149-46f14d2429dd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1a9c242e-b8eb-4f67-9149-46f14d2429dd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c8a61dc7-d3d1-4426-a74c-4530f673cba6' class='xr-var-data-in' type='checkbox'><label for='data-c8a61dc7-d3d1-4426-a74c-4530f673cba6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-25a9af08-3dd0-40c9-9f29-e456d125b700' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-25a9af08-3dd0-40c9-9f29-e456d125b700' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-05320394-af10-4442-9782-18d76baf5dcc' class='xr-var-data-in' type='checkbox'><label for='data-05320394-af10-4442-9782-18d76baf5dcc' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4a729c4c-d745-48ac-aed9-bb594fc0d2e6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4a729c4c-d745-48ac-aed9-bb594fc0d2e6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ab86b133-3cf3-460f-97cb-3a27b9d6459e' class='xr-var-data-in' type='checkbox'><label for='data-ab86b133-3cf3-460f-97cb-3a27b9d6459e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-445697f7-5f23-4d76-8f64-23872855974e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-445697f7-5f23-4d76-8f64-23872855974e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-971a8abb-26c7-4c0b-8b0f-fdbf87f0df73' class='xr-var-data-in' type='checkbox'><label for='data-971a8abb-26c7-4c0b-8b0f-fdbf87f0df73' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c7cc4515-7f60-4992-b30a-9b9962c9a3cb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c7cc4515-7f60-4992-b30a-9b9962c9a3cb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-80e912da-d5db-4f40-8a94-756dde99722a' class='xr-var-data-in' type='checkbox'><label for='data-80e912da-d5db-4f40-8a94-756dde99722a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-15f87426-3cb4-4d18-b6ee-0ab361146e34' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-15f87426-3cb4-4d18-b6ee-0ab361146e34' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-0c8a8f54-3be7-4e2e-bcf0-2fecf7106f72' class='xr-var-data-in' type='checkbox'><label for='data-0c8a8f54-3be7-4e2e-bcf0-2fecf7106f72' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-54bf7ffd-afe6-42e6-a083-ac69ac386f5f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-54bf7ffd-afe6-42e6-a083-ac69ac386f5f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8ea295a7-8aab-4174-b379-0d13b674baf3' class='xr-var-data-in' type='checkbox'><label for='data-8ea295a7-8aab-4174-b379-0d13b674baf3' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9b5bf39b-acf2-4530-8157-af78a115050a' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-9b5bf39b-acf2-4530-8157-af78a115050a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ecf6bf00-61c1-4307-a8c7-d9f011378424' class='xr-var-data-in' type='checkbox'><label for='data-ecf6bf00-61c1-4307-a8c7-d9f011378424' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-4e07da30-d4a9-4c82-8764-74e4bcdce814' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-4e07da30-d4a9-4c82-8764-74e4bcdce814' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:04:19 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_3</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-81eddab9-517c-48cb-92d1-c08be5a2a81c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-81eddab9-517c-48cb-92d1-c08be5a2a81c' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-445a0554-beb5-44dc-b130-5f7e5508e94c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-445a0554-beb5-44dc-b130-5f7e5508e94c' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-8ff212df-6d88-4b21-9dc4-ec35bc0088b3' class='xr-section-summary-in' type='checkbox' checked><label for='section-8ff212df-6d88-4b21-9dc4-ec35bc0088b3' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:04:19 ... 2021-06-...</div><input id='attrs-1b815f0a-25e3-4f2f-b1bf-528ddc923133' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1b815f0a-25e3-4f2f-b1bf-528ddc923133' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3c8546b4-fc5d-4bcc-a642-bd13bb87a273' class='xr-var-data-in' type='checkbox'><label for='data-3c8546b4-fc5d-4bcc-a642-bd13bb87a273' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:04:19.000000000&#x27;, &#x27;2021-06-01T11:04:19.000000000&#x27;,\n",
" &#x27;2021-06-01T11:04:19.000000000&#x27;, ..., &#x27;2021-06-01T11:04:48.000000000&#x27;,\n",
" &#x27;2021-06-01T11:04:48.000000000&#x27;, &#x27;2021-06-01T11:04:48.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-0a97fc5d-a4e3-42b1-a0f6-bcffbe82e921' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0a97fc5d-a4e3-42b1-a0f6-bcffbe82e921' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cb93edb8-0e6b-4ed8-ba2c-02a3b19eea79' class='xr-var-data-in' type='checkbox'><label for='data-cb93edb8-0e6b-4ed8-ba2c-02a3b19eea79' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6ec1ed0a-7a3b-4ff9-8f72-151659aa7400' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6ec1ed0a-7a3b-4ff9-8f72-151659aa7400' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-99c93125-f937-4d2b-9945-3d95bdc0114a' class='xr-var-data-in' type='checkbox'><label for='data-99c93125-f937-4d2b-9945-3d95bdc0114a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ad746c22-99c6-4a2e-8ef1-2a18d2d44b16' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ad746c22-99c6-4a2e-8ef1-2a18d2d44b16' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d68b5665-e764-46d5-971d-d8d6048a6a09' class='xr-var-data-in' type='checkbox'><label for='data-d68b5665-e764-46d5-971d-d8d6048a6a09' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-3f620ce9-c67f-4115-b568-e7f0ec5785c9' class='xr-section-summary-in' type='checkbox' checked><label for='section-3f620ce9-c67f-4115-b568-e7f0ec5785c9' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-02b8dcd2-2222-4144-b6fd-60f131b156f8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-02b8dcd2-2222-4144-b6fd-60f131b156f8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-da43f56c-3640-4ff3-954a-7ca50b8fc97e' class='xr-var-data-in' type='checkbox'><label for='data-da43f56c-3640-4ff3-954a-7ca50b8fc97e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2cc53f76-6c19-47e0-bdcc-d603aa65b54f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2cc53f76-6c19-47e0-bdcc-d603aa65b54f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bede143b-3e81-4fac-8605-621cefb47d2d' class='xr-var-data-in' type='checkbox'><label for='data-bede143b-3e81-4fac-8605-621cefb47d2d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0a91c59b-d334-48bc-bcd6-d7e7093a7bb8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0a91c59b-d334-48bc-bcd6-d7e7093a7bb8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e3194f30-aaad-4dac-8710-6817ba68c8da' class='xr-var-data-in' type='checkbox'><label for='data-e3194f30-aaad-4dac-8710-6817ba68c8da' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5ad8ffcc-7581-4fdd-b41b-713809d3fe2e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5ad8ffcc-7581-4fdd-b41b-713809d3fe2e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cf0c3257-5534-4022-8a9b-11cf69f7f22b' class='xr-var-data-in' type='checkbox'><label for='data-cf0c3257-5534-4022-8a9b-11cf69f7f22b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-55797363-d98a-463a-a92d-609e5a178135' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-55797363-d98a-463a-a92d-609e5a178135' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-cb4e97e4-50fa-40d2-8dc7-c41fb279fbf3' class='xr-var-data-in' type='checkbox'><label for='data-cb4e97e4-50fa-40d2-8dc7-c41fb279fbf3' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-95ba7cfb-c94a-4064-a6a3-05f0f27a3fb7' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-95ba7cfb-c94a-4064-a6a3-05f0f27a3fb7' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-117bae41-e2c4-4765-b985-bce1ed9a0bff' class='xr-var-data-in' type='checkbox'><label for='data-117bae41-e2c4-4765-b985-bce1ed9a0bff' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1af678a2-df7f-48ca-9b80-9f7551bd78ba' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1af678a2-df7f-48ca-9b80-9f7551bd78ba' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-de3c9404-f651-4d22-84f9-c6fbe44910c5' class='xr-var-data-in' type='checkbox'><label for='data-de3c9404-f651-4d22-84f9-c6fbe44910c5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0f2e3fe5-2dda-4133-9be1-227f72de371a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0f2e3fe5-2dda-4133-9be1-227f72de371a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-216d2faa-fcfa-464c-b5c1-3a7a1a163472' class='xr-var-data-in' type='checkbox'><label for='data-216d2faa-fcfa-464c-b5c1-3a7a1a163472' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8ad656b0-278a-4992-99bc-45d508b7a867' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-8ad656b0-278a-4992-99bc-45d508b7a867' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bb8d20ef-95f9-42ee-af93-1a8e24cc0ddb' class='xr-var-data-in' type='checkbox'><label for='data-bb8d20ef-95f9-42ee-af93-1a8e24cc0ddb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-688ab5b3-25c1-4c96-bcf4-a32c9b21fa10' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-688ab5b3-25c1-4c96-bcf4-a32c9b21fa10' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:05:03 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_4</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-5471ce22-2509-42ed-b227-9f26ece47e20' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-5471ce22-2509-42ed-b227-9f26ece47e20' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-2d15814e-3bc9-4942-91dd-1cfb62638aff' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-2d15814e-3bc9-4942-91dd-1cfb62638aff' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-530a703b-d47a-4067-ac8d-8d239dcbb5a4' class='xr-section-summary-in' type='checkbox' checked><label for='section-530a703b-d47a-4067-ac8d-8d239dcbb5a4' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:05:03 ... 2021-06-...</div><input id='attrs-ac771596-5726-42e5-9f74-518fbe6e4e20' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ac771596-5726-42e5-9f74-518fbe6e4e20' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e687f441-aee0-4367-a958-45a958de9940' class='xr-var-data-in' type='checkbox'><label for='data-e687f441-aee0-4367-a958-45a958de9940' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:05:03.000000000&#x27;, &#x27;2021-06-01T11:05:03.000000000&#x27;,\n",
" &#x27;2021-06-01T11:05:03.000000000&#x27;, ..., &#x27;2021-06-01T11:05:32.000000000&#x27;,\n",
" &#x27;2021-06-01T11:05:32.000000000&#x27;, &#x27;2021-06-01T11:05:32.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-e7adaf73-7852-4466-83b9-5552728bc044' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e7adaf73-7852-4466-83b9-5552728bc044' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a342997b-4c98-45c9-abe8-d9163314bdd0' class='xr-var-data-in' type='checkbox'><label for='data-a342997b-4c98-45c9-abe8-d9163314bdd0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7ad725d2-7e39-4a8d-99a4-f4fb0a84e860' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7ad725d2-7e39-4a8d-99a4-f4fb0a84e860' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4e73025b-175f-49f9-b012-8a98ce92792d' class='xr-var-data-in' type='checkbox'><label for='data-4e73025b-175f-49f9-b012-8a98ce92792d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a885fe0e-90aa-46dd-ae9e-fc941d7d32dc' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a885fe0e-90aa-46dd-ae9e-fc941d7d32dc' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-598a15d8-290b-4e80-806d-c9bc0faf50fb' class='xr-var-data-in' type='checkbox'><label for='data-598a15d8-290b-4e80-806d-c9bc0faf50fb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-2cd1ef61-ad22-41db-8746-026a42318e91' class='xr-section-summary-in' type='checkbox' checked><label for='section-2cd1ef61-ad22-41db-8746-026a42318e91' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7b617bf1-ef47-4629-a113-a994cd51b693' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7b617bf1-ef47-4629-a113-a994cd51b693' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6814658c-bb69-4f92-bff6-c3a356120b65' class='xr-var-data-in' type='checkbox'><label for='data-6814658c-bb69-4f92-bff6-c3a356120b65' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5ef039f8-5307-4c2e-8ce4-dfd511edec93' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5ef039f8-5307-4c2e-8ce4-dfd511edec93' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ce393a75-a2e1-47a1-90a5-17b0cad1135b' class='xr-var-data-in' type='checkbox'><label for='data-ce393a75-a2e1-47a1-90a5-17b0cad1135b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-0e334296-d5b1-4286-8ff8-465d170d80d2' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-0e334296-d5b1-4286-8ff8-465d170d80d2' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-580b0189-89a6-4283-bf71-d4b61483ace0' class='xr-var-data-in' type='checkbox'><label for='data-580b0189-89a6-4283-bf71-d4b61483ace0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9489b1bb-9cb7-44f8-96ca-a1aa232fce6f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9489b1bb-9cb7-44f8-96ca-a1aa232fce6f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bbbaf636-8ef4-4ed3-9aea-56013124ddcd' class='xr-var-data-in' type='checkbox'><label for='data-bbbaf636-8ef4-4ed3-9aea-56013124ddcd' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-670b61e8-c71f-4387-b9d3-5e28dc6035f3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-670b61e8-c71f-4387-b9d3-5e28dc6035f3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-724e841d-6678-48b4-9413-518f68f17609' class='xr-var-data-in' type='checkbox'><label for='data-724e841d-6678-48b4-9413-518f68f17609' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e79c5df0-1ff5-421d-9809-4c49fd05eccb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e79c5df0-1ff5-421d-9809-4c49fd05eccb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-1efd7093-9f0c-445f-8cd6-ea1207a590ee' class='xr-var-data-in' type='checkbox'><label for='data-1efd7093-9f0c-445f-8cd6-ea1207a590ee' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1dc7d68c-05e9-4768-af0d-7044b7286897' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1dc7d68c-05e9-4768-af0d-7044b7286897' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5acd82ff-a2b0-47eb-a55e-f22b717a3114' class='xr-var-data-in' type='checkbox'><label for='data-5acd82ff-a2b0-47eb-a55e-f22b717a3114' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-23d9bab4-0454-48bc-a71f-c7816af05132' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-23d9bab4-0454-48bc-a71f-c7816af05132' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6a5b92a9-eaf4-402d-b9f6-a013624b34ea' class='xr-var-data-in' type='checkbox'><label for='data-6a5b92a9-eaf4-402d-b9f6-a013624b34ea' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2ade4d76-835b-4c77-86bb-c6ffbebb25f0' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-2ade4d76-835b-4c77-86bb-c6ffbebb25f0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-4b014548-855f-45e1-83e3-3a73cde78b38' class='xr-var-data-in' type='checkbox'><label for='data-4b014548-855f-45e1-83e3-3a73cde78b38' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-afc4f0f4-8563-4026-aff6-77b2d6d133f0' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-afc4f0f4-8563-4026-aff6-77b2d6d133f0' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:05:47 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_5</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-70c49c67-743f-4907-91e2-48947b18bf56' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-70c49c67-743f-4907-91e2-48947b18bf56' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-084d9903-b044-4c6b-8c61-9ec307a19544' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-084d9903-b044-4c6b-8c61-9ec307a19544' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-e70f7bc3-3e2a-42a5-ac53-f4a71485ad8a' class='xr-section-summary-in' type='checkbox' checked><label for='section-e70f7bc3-3e2a-42a5-ac53-f4a71485ad8a' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:05:47 ... 2021-06-...</div><input id='attrs-e88ebc98-5416-488b-8cb1-8894a34dd905' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e88ebc98-5416-488b-8cb1-8894a34dd905' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a0fc66bc-8104-40a8-8758-bd88bffd944f' class='xr-var-data-in' type='checkbox'><label for='data-a0fc66bc-8104-40a8-8758-bd88bffd944f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:05:47.000000000&#x27;, &#x27;2021-06-01T11:05:47.000000000&#x27;,\n",
" &#x27;2021-06-01T11:05:47.000000000&#x27;, ..., &#x27;2021-06-01T11:06:16.000000000&#x27;,\n",
" &#x27;2021-06-01T11:06:16.000000000&#x27;, &#x27;2021-06-01T11:06:16.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-16532dbb-0eb2-489a-a383-84d8296fd194' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-16532dbb-0eb2-489a-a383-84d8296fd194' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-48682ef6-62ed-4355-918b-dcabe0166ddb' class='xr-var-data-in' type='checkbox'><label for='data-48682ef6-62ed-4355-918b-dcabe0166ddb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f3228989-0221-4e37-b8af-5b54673fde3e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f3228989-0221-4e37-b8af-5b54673fde3e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-df77166d-d21c-43c7-83b8-1d832138d27e' class='xr-var-data-in' type='checkbox'><label for='data-df77166d-d21c-43c7-83b8-1d832138d27e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e0acb100-36cb-41e1-aac1-801195ae1bc9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e0acb100-36cb-41e1-aac1-801195ae1bc9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-50367fc4-25b8-454a-8368-096baf201bdb' class='xr-var-data-in' type='checkbox'><label for='data-50367fc4-25b8-454a-8368-096baf201bdb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-5510a38a-e4a4-4513-88c6-72c0cae5f4bd' class='xr-section-summary-in' type='checkbox' checked><label for='section-5510a38a-e4a4-4513-88c6-72c0cae5f4bd' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-331ce703-e208-4914-8c3c-405619d409b3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-331ce703-e208-4914-8c3c-405619d409b3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b5aa93e7-93c8-4158-8e20-c216e959ebc5' class='xr-var-data-in' type='checkbox'><label for='data-b5aa93e7-93c8-4158-8e20-c216e959ebc5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d74e1250-0a3a-4750-93c0-d94840807def' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d74e1250-0a3a-4750-93c0-d94840807def' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-700d532d-468d-4bb4-940e-137b1974a628' class='xr-var-data-in' type='checkbox'><label for='data-700d532d-468d-4bb4-940e-137b1974a628' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-503b6984-d67f-401d-a399-689279068856' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-503b6984-d67f-401d-a399-689279068856' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c9f85e7f-d637-4cd9-b5e1-49d8722affb1' class='xr-var-data-in' type='checkbox'><label for='data-c9f85e7f-d637-4cd9-b5e1-49d8722affb1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b11819bf-c3c2-4082-bc0d-927786321b0f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b11819bf-c3c2-4082-bc0d-927786321b0f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5b9964dc-db90-4102-8622-9f3893d5bdda' class='xr-var-data-in' type='checkbox'><label for='data-5b9964dc-db90-4102-8622-9f3893d5bdda' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d053cd2b-a703-4336-aa56-af94209cb803' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d053cd2b-a703-4336-aa56-af94209cb803' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ee935273-b093-4ba0-af94-23758e441190' class='xr-var-data-in' type='checkbox'><label for='data-ee935273-b093-4ba0-af94-23758e441190' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d73cdef8-8f5f-448b-bff2-723aabe20a18' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d73cdef8-8f5f-448b-bff2-723aabe20a18' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-acd4bc64-18c7-487b-bcd4-75167c128b66' class='xr-var-data-in' type='checkbox'><label for='data-acd4bc64-18c7-487b-bcd4-75167c128b66' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1de62075-47c6-45e5-af61-88e1a5983fc8' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1de62075-47c6-45e5-af61-88e1a5983fc8' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c47af337-430c-48ce-a5b3-8cca64ef4e5a' class='xr-var-data-in' type='checkbox'><label for='data-c47af337-430c-48ce-a5b3-8cca64ef4e5a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-98c1141c-d498-40d8-9a2a-7391ebd5d534' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-98c1141c-d498-40d8-9a2a-7391ebd5d534' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-778c5767-a640-4bae-80d0-582662e4eccd' class='xr-var-data-in' type='checkbox'><label for='data-778c5767-a640-4bae-80d0-582662e4eccd' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6449fc90-450f-4ea1-a882-41efb6f7c781' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-6449fc90-450f-4ea1-a882-41efb6f7c781' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5fbfdd8d-9e83-4617-a241-dcacd8da552e' class='xr-var-data-in' type='checkbox'><label for='data-5fbfdd8d-9e83-4617-a241-dcacd8da552e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-be1cb816-46e9-4235-a35c-c58f107cda91' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-be1cb816-46e9-4235-a35c-c58f107cda91' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:06:38 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_6</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-78853e8c-dafc-4dac-8a92-4ecd8bd55895' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-78853e8c-dafc-4dac-8a92-4ecd8bd55895' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-449a3360-2ab1-4643-91c3-191b1b10911a' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-449a3360-2ab1-4643-91c3-191b1b10911a' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-708911be-f569-44d1-ae5b-2543215207f4' class='xr-section-summary-in' type='checkbox' checked><label for='section-708911be-f569-44d1-ae5b-2543215207f4' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:06:38 ... 2021-06-...</div><input id='attrs-2f9552b0-a9e1-4eaf-a5aa-aa72af0b2d88' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2f9552b0-a9e1-4eaf-a5aa-aa72af0b2d88' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-21119280-b20b-46a4-8a39-f39ea1f9d5a3' class='xr-var-data-in' type='checkbox'><label for='data-21119280-b20b-46a4-8a39-f39ea1f9d5a3' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:06:38.000000000&#x27;, &#x27;2021-06-01T11:06:38.000000000&#x27;,\n",
" &#x27;2021-06-01T11:06:38.000000000&#x27;, ..., &#x27;2021-06-01T11:07:07.000000000&#x27;,\n",
" &#x27;2021-06-01T11:07:07.000000000&#x27;, &#x27;2021-06-01T11:07:07.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-dd7134ef-4bd9-4235-b4ef-fae8fecffe0f' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dd7134ef-4bd9-4235-b4ef-fae8fecffe0f' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e7b077f0-4ea4-4fb4-9a04-24de5106c16f' class='xr-var-data-in' type='checkbox'><label for='data-e7b077f0-4ea4-4fb4-9a04-24de5106c16f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-9b1e0688-e74e-4753-8890-69ea820bf8ff' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9b1e0688-e74e-4753-8890-69ea820bf8ff' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-04fc9555-07d1-4dca-9335-4ba16f9b11d0' class='xr-var-data-in' type='checkbox'><label for='data-04fc9555-07d1-4dca-9335-4ba16f9b11d0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-743a8854-4ed0-4fcf-b7cb-611f87815721' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-743a8854-4ed0-4fcf-b7cb-611f87815721' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-af1a24fe-c588-4f10-85d0-3c7c8812b43a' class='xr-var-data-in' type='checkbox'><label for='data-af1a24fe-c588-4f10-85d0-3c7c8812b43a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-8a00aa87-9ecd-415b-b941-58d3b9afe8de' class='xr-section-summary-in' type='checkbox' checked><label for='section-8a00aa87-9ecd-415b-b941-58d3b9afe8de' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b1d40ac1-49a5-4621-82c6-5ba08418b192' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b1d40ac1-49a5-4621-82c6-5ba08418b192' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fe187de9-a1ad-41c9-9acf-66e6291d4d33' class='xr-var-data-in' type='checkbox'><label for='data-fe187de9-a1ad-41c9-9acf-66e6291d4d33' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f0ca8e14-67e0-4c7f-8302-b7460c940197' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f0ca8e14-67e0-4c7f-8302-b7460c940197' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c2db1373-1e11-4f62-a29c-1cb32b3d07d1' class='xr-var-data-in' type='checkbox'><label for='data-c2db1373-1e11-4f62-a29c-1cb32b3d07d1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7f150634-d3c7-4a80-9e6a-1c24edd25604' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7f150634-d3c7-4a80-9e6a-1c24edd25604' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7411a43a-02c3-4ac6-b4a5-804884068a3f' class='xr-var-data-in' type='checkbox'><label for='data-7411a43a-02c3-4ac6-b4a5-804884068a3f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-24875761-b383-4c31-960b-f7a43a495d0a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-24875761-b383-4c31-960b-f7a43a495d0a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e4c2a7f4-8557-4641-86c0-4e535d19ed78' class='xr-var-data-in' type='checkbox'><label for='data-e4c2a7f4-8557-4641-86c0-4e535d19ed78' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-fcb00d1c-2a4f-479b-b847-622078323560' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-fcb00d1c-2a4f-479b-b847-622078323560' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fda4060e-9c01-41e0-b9be-1ddfad5762ef' class='xr-var-data-in' type='checkbox'><label for='data-fda4060e-9c01-41e0-b9be-1ddfad5762ef' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c87efa57-ed14-4af4-88b8-d48008c50549' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c87efa57-ed14-4af4-88b8-d48008c50549' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f126639f-9b3b-4c20-b86a-c706ffa894a4' class='xr-var-data-in' type='checkbox'><label for='data-f126639f-9b3b-4c20-b86a-c706ffa894a4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3b7bc040-a0f7-4be7-8087-d49fc72ff448' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3b7bc040-a0f7-4be7-8087-d49fc72ff448' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a3b9d76e-c68f-4c29-89be-b26dc5064083' class='xr-var-data-in' type='checkbox'><label for='data-a3b9d76e-c68f-4c29-89be-b26dc5064083' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7b1f5d58-181d-48e2-a0cd-0f193a37f774' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7b1f5d58-181d-48e2-a0cd-0f193a37f774' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-00b7fff7-5a5d-4af4-8bf3-841701f7250d' class='xr-var-data-in' type='checkbox'><label for='data-00b7fff7-5a5d-4af4-8bf3-841701f7250d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1d20f9cf-879f-4814-a8f5-9a691c2ec6d5' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-1d20f9cf-879f-4814-a8f5-9a691c2ec6d5' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b717f160-8b2e-485b-9263-487f346e1044' class='xr-var-data-in' type='checkbox'><label for='data-b717f160-8b2e-485b-9263-487f346e1044' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-5192e487-f459-4922-ac37-afc3bc688afd' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-5192e487-f459-4922-ac37-afc3bc688afd' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:07:30 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_7</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-746b29ea-3b0d-44ba-8874-358bea6fc7df' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-746b29ea-3b0d-44ba-8874-358bea6fc7df' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-0dd98001-3cd2-49e8-894f-4ae57c3b839f' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-0dd98001-3cd2-49e8-894f-4ae57c3b839f' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-077ae407-e49c-418e-a002-3a881fec601e' class='xr-section-summary-in' type='checkbox' checked><label for='section-077ae407-e49c-418e-a002-3a881fec601e' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:07:30 ... 2021-06-...</div><input id='attrs-feece637-1c9f-46a1-b073-aa79ded411d1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-feece637-1c9f-46a1-b073-aa79ded411d1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-12234ca2-d5fd-4bb6-965d-be5f8fbd73d7' class='xr-var-data-in' type='checkbox'><label for='data-12234ca2-d5fd-4bb6-965d-be5f8fbd73d7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:07:30.000000000&#x27;, &#x27;2021-06-01T11:07:30.000000000&#x27;,\n",
" &#x27;2021-06-01T11:07:30.000000000&#x27;, ..., &#x27;2021-06-01T11:07:59.000000000&#x27;,\n",
" &#x27;2021-06-01T11:07:59.000000000&#x27;, &#x27;2021-06-01T11:07:59.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-7bf565fc-4542-40b6-984e-1e3e9d43986b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7bf565fc-4542-40b6-984e-1e3e9d43986b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-82a7238d-20de-4c30-a1d3-066cb64e3804' class='xr-var-data-in' type='checkbox'><label for='data-82a7238d-20de-4c30-a1d3-066cb64e3804' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c3ce5cf3-2aca-458f-bc0e-f42c7859520e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c3ce5cf3-2aca-458f-bc0e-f42c7859520e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2b81351b-0a20-4366-87c8-b8f3cf387b7c' class='xr-var-data-in' type='checkbox'><label for='data-2b81351b-0a20-4366-87c8-b8f3cf387b7c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e5a1eb95-8f5f-479e-8689-e3c01b343f0a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e5a1eb95-8f5f-479e-8689-e3c01b343f0a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-8873677f-2490-47f1-abc9-921d67ab5f85' class='xr-var-data-in' type='checkbox'><label for='data-8873677f-2490-47f1-abc9-921d67ab5f85' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-fb79e11f-4f32-4423-b56e-b57c44e0ea5f' class='xr-section-summary-in' type='checkbox' checked><label for='section-fb79e11f-4f32-4423-b56e-b57c44e0ea5f' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5d0171dd-52ef-4934-956b-a331234d0e1e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5d0171dd-52ef-4934-956b-a331234d0e1e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-387a9c17-9b68-4f93-b5f4-924cbf2d5da9' class='xr-var-data-in' type='checkbox'><label for='data-387a9c17-9b68-4f93-b5f4-924cbf2d5da9' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-6939b31e-fe47-4214-8950-ca0a7e4421fb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-6939b31e-fe47-4214-8950-ca0a7e4421fb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9159b841-1df0-4c7c-9c5b-6164651cbaf0' class='xr-var-data-in' type='checkbox'><label for='data-9159b841-1df0-4c7c-9c5b-6164651cbaf0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-60da42c3-5b21-49e6-95c0-80bdc28975db' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-60da42c3-5b21-49e6-95c0-80bdc28975db' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e5f8c7ff-8806-4e5a-ba5e-c204643b2d93' class='xr-var-data-in' type='checkbox'><label for='data-e5f8c7ff-8806-4e5a-ba5e-c204643b2d93' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4bfc4fc3-adc1-448a-9450-41b72366326b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4bfc4fc3-adc1-448a-9450-41b72366326b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b4732c0c-ffa9-42b0-89b3-bce95d758695' class='xr-var-data-in' type='checkbox'><label for='data-b4732c0c-ffa9-42b0-89b3-bce95d758695' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c2ae3af2-12e6-42c6-92ab-aa13d38ea297' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c2ae3af2-12e6-42c6-92ab-aa13d38ea297' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e74593bd-e623-451a-bdb2-0525609511fd' class='xr-var-data-in' type='checkbox'><label for='data-e74593bd-e623-451a-bdb2-0525609511fd' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-1bea443d-c7bf-4ebb-b18d-256fe3bb3447' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-1bea443d-c7bf-4ebb-b18d-256fe3bb3447' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a0eedabe-8f34-493f-a381-25913d5522b1' class='xr-var-data-in' type='checkbox'><label for='data-a0eedabe-8f34-493f-a381-25913d5522b1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-04825db4-5cb2-4a52-93bf-0e41408b182b' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-04825db4-5cb2-4a52-93bf-0e41408b182b' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-52e73a24-d899-4909-a604-766b3c9ca955' class='xr-var-data-in' type='checkbox'><label for='data-52e73a24-d899-4909-a604-766b3c9ca955' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-92b04dcc-6c03-4393-b611-218f2e492980' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-92b04dcc-6c03-4393-b611-218f2e492980' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e688e7b1-b185-4b3c-a34d-e309536c77fb' class='xr-var-data-in' type='checkbox'><label for='data-e688e7b1-b185-4b3c-a34d-e309536c77fb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-cfa8e8cb-a30d-4ec2-90da-fe60082e4ab3' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-cfa8e8cb-a30d-4ec2-90da-fe60082e4ab3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6c5366bb-a092-4622-a3dd-658aa406f619' class='xr-var-data-in' type='checkbox'><label for='data-6c5366bb-a092-4622-a3dd-658aa406f619' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-c754d215-1391-4f4c-9f7f-f5df9ccdd469' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-c754d215-1391-4f4c-9f7f-f5df9ccdd469' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 100%;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:08:26 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_8</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-f0aa01b4-4850-4343-a90c-819382da1c21' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-f0aa01b4-4850-4343-a90c-819382da1c21' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-478c2618-1168-492a-8443-259d40aefa57' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-478c2618-1168-492a-8443-259d40aefa57' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-08b04b9f-a0cd-4bbc-af7e-610f114b57e4' class='xr-section-summary-in' type='checkbox' checked><label for='section-08b04b9f-a0cd-4bbc-af7e-610f114b57e4' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:08:26 ... 2021-06-...</div><input id='attrs-477ceace-9bd1-4508-afc5-c4e3a1beadc9' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-477ceace-9bd1-4508-afc5-c4e3a1beadc9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3e2deaab-fa1f-4afc-a500-c8848a6dcf6a' class='xr-var-data-in' type='checkbox'><label for='data-3e2deaab-fa1f-4afc-a500-c8848a6dcf6a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:08:26.000000000&#x27;, &#x27;2021-06-01T11:08:26.000000000&#x27;,\n",
" &#x27;2021-06-01T11:08:26.000000000&#x27;, ..., &#x27;2021-06-01T11:08:55.000000000&#x27;,\n",
" &#x27;2021-06-01T11:08:55.000000000&#x27;, &#x27;2021-06-01T11:08:55.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-309bf139-00f3-4d96-90d9-0914825b876a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-309bf139-00f3-4d96-90d9-0914825b876a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-078e2e77-1523-4b92-9722-cab45fc28498' class='xr-var-data-in' type='checkbox'><label for='data-078e2e77-1523-4b92-9722-cab45fc28498' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8a2b63a8-2b60-4c6d-a07d-2f3ef4e4f742' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8a2b63a8-2b60-4c6d-a07d-2f3ef4e4f742' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-712f16d1-e6c6-497a-8c6e-a6c9dc38c9c7' class='xr-var-data-in' type='checkbox'><label for='data-712f16d1-e6c6-497a-8c6e-a6c9dc38c9c7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-5ad7de56-1bb6-4066-89a1-d480d4fcdc39' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-5ad7de56-1bb6-4066-89a1-d480d4fcdc39' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e3bd6d3b-817e-4089-9f66-3d3c373a649d' class='xr-var-data-in' type='checkbox'><label for='data-e3bd6d3b-817e-4089-9f66-3d3c373a649d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-816db357-a8f4-45c8-ac10-c3a84374c25e' class='xr-section-summary-in' type='checkbox' checked><label for='section-816db357-a8f4-45c8-ac10-c3a84374c25e' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-f732f1ed-2bb1-46ab-b68c-9d290ec78801' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-f732f1ed-2bb1-46ab-b68c-9d290ec78801' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-be83bcc6-aed6-4e69-8a77-6eed7f165dfd' class='xr-var-data-in' type='checkbox'><label for='data-be83bcc6-aed6-4e69-8a77-6eed7f165dfd' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-b3791caf-4a6a-4a02-a26d-aad30ffaddd4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b3791caf-4a6a-4a02-a26d-aad30ffaddd4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5f49ec40-9f0d-4ede-b61e-44d696770896' class='xr-var-data-in' type='checkbox'><label for='data-5f49ec40-9f0d-4ede-b61e-44d696770896' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-075cb4c3-1835-45e7-91a7-b0e3f43a371c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-075cb4c3-1835-45e7-91a7-b0e3f43a371c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-514d2319-8e9f-4cb6-82f3-36bdaa4a0cb4' class='xr-var-data-in' type='checkbox'><label for='data-514d2319-8e9f-4cb6-82f3-36bdaa4a0cb4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-43556958-6efb-462c-9403-938fe679f449' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-43556958-6efb-462c-9403-938fe679f449' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c7871301-d512-445a-89f3-1a9b9e8c2287' class='xr-var-data-in' type='checkbox'><label for='data-c7871301-d512-445a-89f3-1a9b9e8c2287' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-7e63366e-d9d0-44fa-9828-8edd626ff0d4' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-7e63366e-d9d0-44fa-9828-8edd626ff0d4' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b88995f7-c7da-42f5-a09d-14ca1835e6e0' class='xr-var-data-in' type='checkbox'><label for='data-b88995f7-c7da-42f5-a09d-14ca1835e6e0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-616cf158-c9c4-4e89-91f5-4422d3afac64' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-616cf158-c9c4-4e89-91f5-4422d3afac64' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bb4e0d93-2a3a-4bf8-9327-c02d7b1ec317' class='xr-var-data-in' type='checkbox'><label for='data-bb4e0d93-2a3a-4bf8-9327-c02d7b1ec317' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-960e6e1c-559f-4361-903e-92318fe6fc70' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-960e6e1c-559f-4361-903e-92318fe6fc70' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e581f737-fed5-4d95-994a-376d3b669cab' class='xr-var-data-in' type='checkbox'><label for='data-e581f737-fed5-4d95-994a-376d3b669cab' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3539b616-31b9-4089-af22-2d8965f7e434' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3539b616-31b9-4089-af22-2d8965f7e434' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3cd5b2eb-1793-4bfe-aff8-989446070d7b' class='xr-var-data-in' type='checkbox'><label for='data-3cd5b2eb-1793-4bfe-aff8-989446070d7b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-935548c2-42ad-4c8b-8ddf-95e0b2ec57ec' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-935548c2-42ad-4c8b-8ddf-95e0b2ec57ec' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6d564c34-549b-4366-9d96-dbfb8051dcd0' class='xr-var-data-in' type='checkbox'><label for='data-6d564c34-549b-4366-9d96-dbfb8051dcd0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-87625f0c-ab54-45bc-88b7-314eb0dc6dba' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-87625f0c-ab54-45bc-88b7-314eb0dc6dba' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div><div style='display: inline-grid;'><div style='grid-column-start: 1;border-right: 0.2em solid;border-color: var(--xr-border-color);height: 1.2em;width: 0px;'></div><div style='grid-column-start: 2;grid-row-start: 1;height: 1em;width: 20px;border-bottom: 0.2em solid;border-color: var(--xr-border-color);'></div><div style='grid-column-start: 3;'><ul class='xr-sections'><div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:09:27 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>sweep_9</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-9d01474d-0e2d-4ad9-ae5b-e94d280e587d' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-9d01474d-0e2d-4ad9-ae5b-e94d280e587d' class='xr-section-summary' title='Expand/collapse section'>Groups: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><div style='display: inline-grid; grid-template-columns: 100%'></div></div></li><li class='xr-section-item'><input id='section-b2adf3f3-7909-495b-87aa-6b6cf25ad48c' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b2adf3f3-7909-495b-87aa-6b6cf25ad48c' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-a807a672-d82d-4824-994d-99546d76b2f1' class='xr-section-summary-in' type='checkbox' checked><label for='section-a807a672-d82d-4824-994d-99546d76b2f1' class='xr-section-summary' >Coordinates: <span>(4)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:09:27 ... 2021-06-...</div><input id='attrs-a221ccdf-1645-4dbe-ae9a-6483631fd088' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a221ccdf-1645-4dbe-ae9a-6483631fd088' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-947b8382-01fe-41d9-aba0-1b1d659de9d7' class='xr-var-data-in' type='checkbox'><label for='data-947b8382-01fe-41d9-aba0-1b1d659de9d7' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:09:27.000000000&#x27;, &#x27;2021-06-01T11:09:27.000000000&#x27;,\n",
" &#x27;2021-06-01T11:09:27.000000000&#x27;, ..., &#x27;2021-06-01T11:09:56.000000000&#x27;,\n",
" &#x27;2021-06-01T11:09:56.000000000&#x27;, &#x27;2021-06-01T11:09:56.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-a24600bc-bd5d-4659-a479-215ef2fb1d15' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a24600bc-bd5d-4659-a479-215ef2fb1d15' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6cdc2ee3-f050-49e9-b180-1ae16cf17cc6' class='xr-var-data-in' type='checkbox'><label for='data-6cdc2ee3-f050-49e9-b180-1ae16cf17cc6' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-768dff6d-a40a-4a22-8f61-331723c6b88e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-768dff6d-a40a-4a22-8f61-331723c6b88e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-200d41d3-30a8-49e4-be8e-2f116ba2af3e' class='xr-var-data-in' type='checkbox'><label for='data-200d41d3-30a8-49e4-be8e-2f116ba2af3e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-42b8bd19-4473-413e-9777-1a827a4b272c' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-42b8bd19-4473-413e-9777-1a827a4b272c' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-32a35bc6-ef33-4ec5-848a-85e82f9982c2' class='xr-var-data-in' type='checkbox'><label for='data-32a35bc6-ef33-4ec5-848a-85e82f9982c2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>[360 values with dtype=float32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-d7450785-c367-4850-933a-8e33881d5b21' class='xr-section-summary-in' type='checkbox' checked><label for='section-d7450785-c367-4850-933a-8e33881d5b21' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-500d4dda-5ed6-4920-8339-eecb4dfd7e42' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-500d4dda-5ed6-4920-8339-eecb4dfd7e42' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5f6b22f9-abe4-4453-a52b-705f7e258a2c' class='xr-var-data-in' type='checkbox'><label for='data-5f6b22f9-abe4-4453-a52b-705f7e258a2c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-dcfcde50-926a-40ad-ae76-e00f49a7f6af' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dcfcde50-926a-40ad-ae76-e00f49a7f6af' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-32025d18-b737-411d-a2f9-3579ae11fe77' class='xr-var-data-in' type='checkbox'><label for='data-32025d18-b737-411d-a2f9-3579ae11fe77' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ee25291e-8ae8-41e4-8b57-91f600d38b01' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ee25291e-8ae8-41e4-8b57-91f600d38b01' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2329263e-0f07-4707-a0ec-ecdb608fe9da' class='xr-var-data-in' type='checkbox'><label for='data-2329263e-0f07-4707-a0ec-ecdb608fe9da' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-2faf3044-b402-4d44-9273-8cf525bec480' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-2faf3044-b402-4d44-9273-8cf525bec480' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d895e22f-afa3-45b2-82dd-da7d72d0fbf2' class='xr-var-data-in' type='checkbox'><label for='data-d895e22f-afa3-45b2-82dd-da7d72d0fbf2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8cb755eb-113b-4bc5-af5f-08a33bfc2793' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8cb755eb-113b-4bc5-af5f-08a33bfc2793' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f7c919b5-9a72-40a7-a301-53b1f961b0eb' class='xr-var-data-in' type='checkbox'><label for='data-f7c919b5-9a72-40a7-a301-53b1f961b0eb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e5b2be68-dbe2-4927-ac7a-18259fc8f1ab' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e5b2be68-dbe2-4927-ac7a-18259fc8f1ab' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-a947106a-5eea-4fac-b62b-59764f4763b1' class='xr-var-data-in' type='checkbox'><label for='data-a947106a-5eea-4fac-b62b-59764f4763b1' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-88a8c4c7-a74d-4fa3-98d6-81f2c075402d' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-88a8c4c7-a74d-4fa3-98d6-81f2c075402d' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c23f1bfb-016f-49bb-a272-37fc76557eca' class='xr-var-data-in' type='checkbox'><label for='data-c23f1bfb-016f-49bb-a272-37fc76557eca' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-983125e8-a0b8-487b-b0e4-5c99afed9655' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-983125e8-a0b8-487b-b0e4-5c99afed9655' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-40e5589d-ff84-4dcd-aa29-4be94d3c5d7a' class='xr-var-data-in' type='checkbox'><label for='data-40e5589d-ff84-4dcd-aa29-4be94d3c5d7a' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-c4490082-5eec-41f4-93a7-d4fbfebc4e40' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-c4490082-5eec-41f4-93a7-d4fbfebc4e40' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fe14a47a-11e6-4117-9226-fe51de8448e5' class='xr-var-data-in' type='checkbox'><label for='data-fe14a47a-11e6-4117-9226-fe51de8448e5' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-c0af8a3b-fafc-4346-850c-f1b0a30530fd' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-c0af8a3b-fafc-4346-850c-f1b0a30530fd' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div></ul></div></div></div></div></li><li class='xr-section-item'><input id='section-508c6eb2-93a4-44a1-a74b-fd362a7a2cc0' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-508c6eb2-93a4-44a1-a74b-fd362a7a2cc0' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span>sweep</span>: 10</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-61738d51-39f0-44d5-8780-7cdfd20bf397' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-61738d51-39f0-44d5-8780-7cdfd20bf397' class='xr-section-summary' title='Expand/collapse section'>Coordinates: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'></ul></div></li><li class='xr-section-item'><input id='section-f677b4cf-22d2-4b3b-8804-e221f5660264' class='xr-section-summary-in' type='checkbox' checked><label for='section-f677b4cf-22d2-4b3b-8804-e221f5660264' class='xr-section-summary' >Data variables: <span>(11)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>sweep_group_name</span></div><div class='xr-var-dims'>(sweep)</div><div class='xr-var-dtype'>object</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-81e680ab-a29d-4040-a329-f797751c1bb9' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-81e680ab-a29d-4040-a329-f797751c1bb9' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-623e5292-be64-4f10-b542-8152251c3c3b' class='xr-var-data-in' type='checkbox'><label for='data-623e5292-be64-4f10-b542-8152251c3c3b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[10 values with dtype=object]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>(sweep)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d22eb2b2-a403-429e-a71f-d6145ca9eeda' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d22eb2b2-a403-429e-a71f-d6145ca9eeda' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-07e313f2-c0db-4194-875d-41d2812ef7f2' class='xr-var-data-in' type='checkbox'><label for='data-07e313f2-c0db-4194-875d-41d2812ef7f2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[10 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>latitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ec94a3a7-7283-4460-84d8-ae66a5fbdc22' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ec94a3a7-7283-4460-84d8-ae66a5fbdc22' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5629374b-30b2-4473-8392-b86395d43112' class='xr-var-data-in' type='checkbox'><label for='data-5629374b-30b2-4473-8392-b86395d43112' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Latitude</dd><dt><span>units :</span></dt><dd>degrees_north</dd><dt><span>standard_name :</span></dt><dd>Latitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>longitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-ae7736b8-5431-4a4b-b409-db05cb0bcde1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-ae7736b8-5431-4a4b-b409-db05cb0bcde1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-c8518795-56d4-46c2-af59-b0ff5e2c7627' class='xr-var-data-in' type='checkbox'><label for='data-c8518795-56d4-46c2-af59-b0ff5e2c7627' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Longitude</dd><dt><span>units :</span></dt><dd>degrees_east</dd><dt><span>standard_name :</span></dt><dd>Longitude</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>altitude</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float64</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-04f54dc3-736b-4f53-b4f1-05ffa3ffb275' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-04f54dc3-736b-4f53-b4f1-05ffa3ffb275' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-722f97ff-ad45-4fa2-b3f4-782071776de4' class='xr-var-data-in' type='checkbox'><label for='data-722f97ff-ad45-4fa2-b3f4-782071776de4' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Altitude</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>Altitude</dd><dt><span>positive :</span></dt><dd>up</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float64]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_coverage_start</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e2cdbf5c-0b24-4446-a9d9-3172a7b62102' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e2cdbf5c-0b24-4446-a9d9-3172a7b62102' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-21bfc49f-b0b1-4b94-a126-35c670e656ca' class='xr-var-data-in' type='checkbox'><label for='data-21bfc49f-b0b1-4b94-a126-35c670e656ca' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>UTC time of first ray in the file</dd><dt><span>units :</span></dt><dd>unitless</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>time_coverage_end</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-58810f85-5235-43ef-a01d-a87bccf0e2bd' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-58810f85-5235-43ef-a01d-a87bccf0e2bd' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-2bd9999a-1e66-4d60-9971-a3c719145b3f' class='xr-var-data-in' type='checkbox'><label for='data-2bd9999a-1e66-4d60-9971-a3c719145b3f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>UTC time of last ray in the file</dd><dt><span>units :</span></dt><dd>unitless</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>volume_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-dccecfd5-9247-450c-918b-1034d6bb7002' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-dccecfd5-9247-450c-918b-1034d6bb7002' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f4dbc91f-880c-4972-b742-444ed3a26328' class='xr-var-data-in' type='checkbox'><label for='data-f4dbc91f-880c-4972-b742-444ed3a26328' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Volume number</dd><dt><span>units :</span></dt><dd>unitless</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>platform_type</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-79691d63-b7aa-470a-97e3-febc4eea56ab' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-79691d63-b7aa-470a-97e3-febc4eea56ab' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-f13b9df4-b5f6-49ab-9626-1f6d99b7881b' class='xr-var-data-in' type='checkbox'><label for='data-f13b9df4-b5f6-49ab-9626-1f6d99b7881b' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Platform type</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>instrument_type</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-81582b42-bdf1-4afc-9e87-71a62d927c81' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-81582b42-bdf1-4afc-9e87-71a62d927c81' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-72701aea-f67e-4b63-bc1e-6bce97beb478' class='xr-var-data-in' type='checkbox'><label for='data-72701aea-f67e-4b63-bc1e-6bce97beb478' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Instrument type</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>primary_axis</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-e05df399-af14-4862-a7a9-ce6810be64e6' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e05df399-af14-4862-a7a9-ce6810be64e6' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e9cee668-6f1a-4585-a807-b94fa4fa867f' class='xr-var-data-in' type='checkbox'><label for='data-e9cee668-6f1a-4585-a807-b94fa4fa867f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Primary axis</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-0d9eaf26-ca01-46c6-a572-f3106d8baa82' class='xr-section-summary-in' type='checkbox' checked><label for='section-0d9eaf26-ca01-46c6-a572-f3106d8baa82' class='xr-section-summary' >Attributes: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'><dt><span>Conventions :</span></dt><dd>Cf/Radial</dd><dt><span>version :</span></dt><dd>2.0</dd><dt><span>title :</span></dt><dd></dd><dt><span>institution :</span></dt><dd></dd><dt><span>references :</span></dt><dd></dd><dt><span>source :</span></dt><dd></dd><dt><span>comment :</span></dt><dd></dd><dt><span>instrument_name :</span></dt><dd>BHOPAL-RADAR</dd><dt><span>history :</span></dt><dd>: xradar v0.0.0 CfRadial2 export</dd></dl></div></li></ul></div></div>"
],
"text/plain": [
"DataTree('None', parent=None)\n",
"│ Dimensions: (sweep: 10)\n",
"│ Dimensions without coordinates: sweep\n",
"│ Data variables:\n",
"│ sweep_group_name (sweep) object ...\n",
"│ sweep_fixed_angle (sweep) float32 ...\n",
"│ latitude float64 ...\n",
"│ longitude float64 ...\n",
"│ altitude float64 ...\n",
"│ time_coverage_start |S32 ...\n",
"│ time_coverage_end |S32 ...\n",
"│ volume_number int32 ...\n",
"│ platform_type |S32 ...\n",
"│ instrument_type |S32 ...\n",
"│ primary_axis |S32 ...\n",
"│ Attributes:\n",
"│ Conventions: Cf/Radial\n",
"│ version: 2.0\n",
"│ title: \n",
"│ institution: \n",
"│ references: \n",
"│ source: \n",
"│ comment: \n",
"│ instrument_name: BHOPAL-RADAR\n",
"│ history: : xradar v0.0.0 CfRadial2 export\n",
"├── DataTree('radar_parameters')\n",
"│ Dimensions: ()\n",
"│ Data variables:\n",
"│ radar_beam_width_v float32 ...\n",
"│ radar_beam_width_h float32 ...\n",
"├── DataTree('georeferencing_correction')\n",
"├── DataTree('sweep_0')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:02:23 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"├── DataTree('sweep_1')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:02:56 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"├── DataTree('sweep_2')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:03:28 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"├── DataTree('sweep_3')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:04:19 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"├── DataTree('sweep_4')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:05:03 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"├── DataTree('sweep_5')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:05:47 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"├── DataTree('sweep_6')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:06:38 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"├── DataTree('sweep_7')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:07:30 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"├── DataTree('sweep_8')\n",
"│ Dimensions: (time: 360, range: 500)\n",
"│ Coordinates:\n",
"│ * time (time) datetime64[ns] 2021-06-01T11:08:26 ... 2021-06-...\n",
"│ * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
"│ azimuth (time) float32 ...\n",
"│ elevation (time) float32 ...\n",
"│ Data variables:\n",
"│ reflectivity (time, range) float32 ...\n",
"│ velocity (time, range) float32 ...\n",
"│ spectrum_width (time, range) float32 ...\n",
"│ R (time, range) float32 ...\n",
"│ sweep_number int32 ...\n",
"│ sweep_fixed_angle float32 ...\n",
"│ sweep_mode |S32 ...\n",
"│ prt_mode |S32 ...\n",
"│ CMAP (time, range) bool ...\n",
"└── DataTree('sweep_9')\n",
" Dimensions: (time: 360, range: 500)\n",
" Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:09:27 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 ...\n",
" elevation (time) float32 ...\n",
" Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ..."
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"nvol = datatree.open_datatree(new_name)\n",
"display(nvol)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Georeference Volume\n",
"\n",
"We use `xradar`-Accessor here. The sweeps are georeferenced with azimuthal equidistant projection."
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"nvol = nvol.xradar.georeference()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Plotting\n",
"\n",
"Uses `xarray` provided plotting using `matplotlib`."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Get first sweep Dataset by name"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div><svg style=\"position: absolute; width: 0; height: 0; overflow: hidden\">\n",
"<defs>\n",
"<symbol id=\"icon-database\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M16 0c-8.837 0-16 2.239-16 5v4c0 2.761 7.163 5 16 5s16-2.239 16-5v-4c0-2.761-7.163-5-16-5z\"></path>\n",
"<path d=\"M16 17c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"<path d=\"M16 26c-8.837 0-16-2.239-16-5v6c0 2.761 7.163 5 16 5s16-2.239 16-5v-6c0 2.761-7.163 5-16 5z\"></path>\n",
"</symbol>\n",
"<symbol id=\"icon-file-text2\" viewBox=\"0 0 32 32\">\n",
"<path d=\"M28.681 7.159c-0.694-0.947-1.662-2.053-2.724-3.116s-2.169-2.030-3.116-2.724c-1.612-1.182-2.393-1.319-2.841-1.319h-15.5c-1.378 0-2.5 1.121-2.5 2.5v27c0 1.378 1.122 2.5 2.5 2.5h23c1.378 0 2.5-1.122 2.5-2.5v-19.5c0-0.448-0.137-1.23-1.319-2.841zM24.543 5.457c0.959 0.959 1.712 1.825 2.268 2.543h-4.811v-4.811c0.718 0.556 1.584 1.309 2.543 2.268zM28 29.5c0 0.271-0.229 0.5-0.5 0.5h-23c-0.271 0-0.5-0.229-0.5-0.5v-27c0-0.271 0.229-0.5 0.5-0.5 0 0 15.499-0 15.5 0v7c0 0.552 0.448 1 1 1h7v19.5z\"></path>\n",
"<path d=\"M23 26h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 22h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"<path d=\"M23 18h-14c-0.552 0-1-0.448-1-1s0.448-1 1-1h14c0.552 0 1 0.448 1 1s-0.448 1-1 1z\"></path>\n",
"</symbol>\n",
"</defs>\n",
"</svg>\n",
"<style>/* CSS stylesheet for displaying xarray objects in jupyterlab.\n",
" *\n",
" */\n",
"\n",
":root {\n",
" --xr-font-color0: var(--jp-content-font-color0, rgba(0, 0, 0, 1));\n",
" --xr-font-color2: var(--jp-content-font-color2, rgba(0, 0, 0, 0.54));\n",
" --xr-font-color3: var(--jp-content-font-color3, rgba(0, 0, 0, 0.38));\n",
" --xr-border-color: var(--jp-border-color2, #e0e0e0);\n",
" --xr-disabled-color: var(--jp-layout-color3, #bdbdbd);\n",
" --xr-background-color: var(--jp-layout-color0, white);\n",
" --xr-background-color-row-even: var(--jp-layout-color1, white);\n",
" --xr-background-color-row-odd: var(--jp-layout-color2, #eeeeee);\n",
"}\n",
"\n",
"html[theme=dark],\n",
"body[data-theme=dark],\n",
"body.vscode-dark {\n",
" --xr-font-color0: rgba(255, 255, 255, 1);\n",
" --xr-font-color2: rgba(255, 255, 255, 0.54);\n",
" --xr-font-color3: rgba(255, 255, 255, 0.38);\n",
" --xr-border-color: #1F1F1F;\n",
" --xr-disabled-color: #515151;\n",
" --xr-background-color: #111111;\n",
" --xr-background-color-row-even: #111111;\n",
" --xr-background-color-row-odd: #313131;\n",
"}\n",
"\n",
".xr-wrap {\n",
" display: block !important;\n",
" min-width: 300px;\n",
" max-width: 700px;\n",
"}\n",
"\n",
".xr-text-repr-fallback {\n",
" /* fallback to plain text repr when CSS is not injected (untrusted notebook) */\n",
" display: none;\n",
"}\n",
"\n",
".xr-header {\n",
" padding-top: 6px;\n",
" padding-bottom: 6px;\n",
" margin-bottom: 4px;\n",
" border-bottom: solid 1px var(--xr-border-color);\n",
"}\n",
"\n",
".xr-header > div,\n",
".xr-header > ul {\n",
" display: inline;\n",
" margin-top: 0;\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-obj-type,\n",
".xr-array-name {\n",
" margin-left: 2px;\n",
" margin-right: 10px;\n",
"}\n",
"\n",
".xr-obj-type {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-sections {\n",
" padding-left: 0 !important;\n",
" display: grid;\n",
" grid-template-columns: 150px auto auto 1fr 20px 20px;\n",
"}\n",
"\n",
".xr-section-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-section-item input {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-item input + label {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label {\n",
" cursor: pointer;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-item input:enabled + label:hover {\n",
" color: var(--xr-font-color0);\n",
"}\n",
"\n",
".xr-section-summary {\n",
" grid-column: 1;\n",
" color: var(--xr-font-color2);\n",
" font-weight: 500;\n",
"}\n",
"\n",
".xr-section-summary > span {\n",
" display: inline-block;\n",
" padding-left: 0.5em;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label {\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-section-summary-in + label:before {\n",
" display: inline-block;\n",
" content: '►';\n",
" font-size: 11px;\n",
" width: 15px;\n",
" text-align: center;\n",
"}\n",
"\n",
".xr-section-summary-in:disabled + label:before {\n",
" color: var(--xr-disabled-color);\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label:before {\n",
" content: '▼';\n",
"}\n",
"\n",
".xr-section-summary-in:checked + label > span {\n",
" display: none;\n",
"}\n",
"\n",
".xr-section-summary,\n",
".xr-section-inline-details {\n",
" padding-top: 4px;\n",
" padding-bottom: 4px;\n",
"}\n",
"\n",
".xr-section-inline-details {\n",
" grid-column: 2 / -1;\n",
"}\n",
"\n",
".xr-section-details {\n",
" display: none;\n",
" grid-column: 1 / -1;\n",
" margin-bottom: 5px;\n",
"}\n",
"\n",
".xr-section-summary-in:checked ~ .xr-section-details {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-array-wrap {\n",
" grid-column: 1 / -1;\n",
" display: grid;\n",
" grid-template-columns: 20px auto;\n",
"}\n",
"\n",
".xr-array-wrap > label {\n",
" grid-column: 1;\n",
" vertical-align: top;\n",
"}\n",
"\n",
".xr-preview {\n",
" color: var(--xr-font-color3);\n",
"}\n",
"\n",
".xr-array-preview,\n",
".xr-array-data {\n",
" padding: 0 5px !important;\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-array-data,\n",
".xr-array-in:checked ~ .xr-array-preview {\n",
" display: none;\n",
"}\n",
"\n",
".xr-array-in:checked ~ .xr-array-data,\n",
".xr-array-preview {\n",
" display: inline-block;\n",
"}\n",
"\n",
".xr-dim-list {\n",
" display: inline-block !important;\n",
" list-style: none;\n",
" padding: 0 !important;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list li {\n",
" display: inline-block;\n",
" padding: 0;\n",
" margin: 0;\n",
"}\n",
"\n",
".xr-dim-list:before {\n",
" content: '(';\n",
"}\n",
"\n",
".xr-dim-list:after {\n",
" content: ')';\n",
"}\n",
"\n",
".xr-dim-list li:not(:last-child):after {\n",
" content: ',';\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-has-index {\n",
" font-weight: bold;\n",
"}\n",
"\n",
".xr-var-list,\n",
".xr-var-item {\n",
" display: contents;\n",
"}\n",
"\n",
".xr-var-item > div,\n",
".xr-var-item label,\n",
".xr-var-item > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-even);\n",
" margin-bottom: 0;\n",
"}\n",
"\n",
".xr-var-item > .xr-var-name:hover span {\n",
" padding-right: 5px;\n",
"}\n",
"\n",
".xr-var-list > li:nth-child(odd) > div,\n",
".xr-var-list > li:nth-child(odd) > label,\n",
".xr-var-list > li:nth-child(odd) > .xr-var-name span {\n",
" background-color: var(--xr-background-color-row-odd);\n",
"}\n",
"\n",
".xr-var-name {\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-var-dims {\n",
" grid-column: 2;\n",
"}\n",
"\n",
".xr-var-dtype {\n",
" grid-column: 3;\n",
" text-align: right;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-preview {\n",
" grid-column: 4;\n",
"}\n",
"\n",
".xr-index-preview {\n",
" grid-column: 2 / 5;\n",
" color: var(--xr-font-color2);\n",
"}\n",
"\n",
".xr-var-name,\n",
".xr-var-dims,\n",
".xr-var-dtype,\n",
".xr-preview,\n",
".xr-attrs dt {\n",
" white-space: nowrap;\n",
" overflow: hidden;\n",
" text-overflow: ellipsis;\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-var-name:hover,\n",
".xr-var-dims:hover,\n",
".xr-var-dtype:hover,\n",
".xr-attrs dt:hover {\n",
" overflow: visible;\n",
" width: auto;\n",
" z-index: 1;\n",
"}\n",
"\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" display: none;\n",
" background-color: var(--xr-background-color) !important;\n",
" padding-bottom: 5px !important;\n",
"}\n",
"\n",
".xr-var-attrs-in:checked ~ .xr-var-attrs,\n",
".xr-var-data-in:checked ~ .xr-var-data,\n",
".xr-index-data-in:checked ~ .xr-index-data {\n",
" display: block;\n",
"}\n",
"\n",
".xr-var-data > table {\n",
" float: right;\n",
"}\n",
"\n",
".xr-var-name span,\n",
".xr-var-data,\n",
".xr-index-name div,\n",
".xr-index-data,\n",
".xr-attrs {\n",
" padding-left: 25px !important;\n",
"}\n",
"\n",
".xr-attrs,\n",
".xr-var-attrs,\n",
".xr-var-data,\n",
".xr-index-data {\n",
" grid-column: 1 / -1;\n",
"}\n",
"\n",
"dl.xr-attrs {\n",
" padding: 0;\n",
" margin: 0;\n",
" display: grid;\n",
" grid-template-columns: 125px auto;\n",
"}\n",
"\n",
".xr-attrs dt,\n",
".xr-attrs dd {\n",
" padding: 0;\n",
" margin: 0;\n",
" float: left;\n",
" padding-right: 10px;\n",
" width: auto;\n",
"}\n",
"\n",
".xr-attrs dt {\n",
" font-weight: normal;\n",
" grid-column: 1;\n",
"}\n",
"\n",
".xr-attrs dt:hover span {\n",
" display: inline-block;\n",
" background: var(--xr-background-color);\n",
" padding-right: 10px;\n",
"}\n",
"\n",
".xr-attrs dd {\n",
" grid-column: 2;\n",
" white-space: pre-wrap;\n",
" word-break: break-all;\n",
"}\n",
"\n",
".xr-icon-database,\n",
".xr-icon-file-text2,\n",
".xr-no-icon {\n",
" display: inline-block;\n",
" vertical-align: middle;\n",
" width: 1em;\n",
" height: 1.5em !important;\n",
" stroke-width: 0;\n",
" stroke: currentColor;\n",
" fill: currentColor;\n",
"}\n",
"</style><pre class='xr-text-repr-fallback'>&lt;xarray.DatasetView&gt;\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:02:23 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 50.01 51.03 52.0 ... 47.01 48.02 49.0\n",
" elevation (time) float32 0.1978 0.1895 0.1785 ... 0.1099 0.1099\n",
" x (time, range) float32 0.0 383.1 ... 1.879e+05 1.882e+05\n",
" y (time, range) float32 0.0 321.3 ... 1.633e+05 1.636e+05\n",
" z (time, range) float32 0.0 2.0 3.0 ... 4.125e+03 4.141e+03\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ...</pre><div class='xr-wrap' style='display:none'><div class='xr-header'><div class='xr-obj-type'>xarray.DatasetView</div></div><ul class='xr-sections'><li class='xr-section-item'><input id='section-20a0d9a2-99b1-4bd9-a8a7-5a98e3f95002' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-20a0d9a2-99b1-4bd9-a8a7-5a98e3f95002' class='xr-section-summary' title='Expand/collapse section'>Dimensions:</label><div class='xr-section-inline-details'><ul class='xr-dim-list'><li><span class='xr-has-index'>time</span>: 360</li><li><span class='xr-has-index'>range</span>: 500</li></ul></div><div class='xr-section-details'></div></li><li class='xr-section-item'><input id='section-1b3034f4-0c9d-4582-ad2c-340ebc501da0' class='xr-section-summary-in' type='checkbox' checked><label for='section-1b3034f4-0c9d-4582-ad2c-340ebc501da0' class='xr-section-summary' >Coordinates: <span>(7)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>time</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>datetime64[ns]</div><div class='xr-var-preview xr-preview'>2021-06-01T11:02:23 ... 2021-06-...</div><input id='attrs-b6107a12-ef74-46f0-ac29-cdab52149cc1' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b6107a12-ef74-46f0-ac29-cdab52149cc1' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-5e3ccaa0-f6ea-4474-9dab-ac7b31a3336e' class='xr-var-data-in' type='checkbox'><label for='data-5e3ccaa0-f6ea-4474-9dab-ac7b31a3336e' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>time_in_seconds_since_volume_start</dd><dt><span>standard_name :</span></dt><dd>time</dd><dt><span>comment :</span></dt><dd>Coordinate variable for time. Time at the center of each ray, in fractional seconds since the global variable time_coverage_start</dd></dl></div><div class='xr-var-data'><pre>array([&#x27;2021-06-01T11:02:23.000000000&#x27;, &#x27;2021-06-01T11:02:24.000000000&#x27;,\n",
" &#x27;2021-06-01T11:02:24.000000000&#x27;, ..., &#x27;2021-06-01T11:02:53.000000000&#x27;,\n",
" &#x27;2021-06-01T11:02:53.000000000&#x27;, &#x27;2021-06-01T11:02:53.000000000&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span class='xr-has-index'>range</span></div><div class='xr-var-dims'>(range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 500.0 ... 2.49e+05 2.495e+05</div><input id='attrs-39a92f12-21f8-4908-8712-0b9f4c7ae958' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-39a92f12-21f8-4908-8712-0b9f4c7ae958' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-7553c04e-060c-4b3c-8ebb-b72e8a2b1636' class='xr-var-data-in' type='checkbox'><label for='data-7553c04e-060c-4b3c-8ebb-b72e8a2b1636' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>range_to_measurement_volume</dd><dt><span>units :</span></dt><dd>meters</dd><dt><span>standard_name :</span></dt><dd>projection_range_coordinate</dd><dt><span>axis :</span></dt><dd>radial_range_coordinate</dd><dt><span>spacing_is_constant :</span></dt><dd>true</dd><dt><span>comment :</span></dt><dd>Coordinate variable for range. Range to center of each bin.</dd><dt><span>meters_to_center_of_first_gate :</span></dt><dd>0.0</dd><dt><span>meters_between_gates :</span></dt><dd>500.0</dd></dl></div><div class='xr-var-data'><pre>array([ 0., 500., 1000., ..., 248500., 249000., 249500.],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>azimuth</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>50.01 51.03 52.0 ... 48.02 49.0</div><input id='attrs-15269a35-623e-49ce-a3df-9e9dbd6b2fcb' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-15269a35-623e-49ce-a3df-9e9dbd6b2fcb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-36cd616a-9f48-4581-9d2b-7d2788660632' class='xr-var-data-in' type='checkbox'><label for='data-36cd616a-9f48-4581-9d2b-7d2788660632' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>azimuth_angle_from_true_north</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_azimuth_angle</dd><dt><span>axis :</span></dt><dd>radial_azimuth_coordinate</dd><dt><span>comment :</span></dt><dd>Azimuth of antenna relative to true north</dd></dl></div><div class='xr-var-data'><pre>array([50.00702 , 51.025997, 52.001034, ..., 47.010498, 48.02124 , 49.00177 ],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>elevation</span></div><div class='xr-var-dims'>(time)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.1978 0.1895 ... 0.1099 0.1099</div><input id='attrs-e6ed30f2-9cbc-4b58-b8a9-c0acb2420a03' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-e6ed30f2-9cbc-4b58-b8a9-c0acb2420a03' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-e3e62e94-2cd9-4637-8403-b8575ec1fb47' class='xr-var-data-in' type='checkbox'><label for='data-e3e62e94-2cd9-4637-8403-b8575ec1fb47' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>elevation_angle_from_horizontal_plane</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>beam_elevation_angle</dd><dt><span>axis :</span></dt><dd>radial_elevation_coordinate</dd><dt><span>comment :</span></dt><dd>Elevation of antenna relative to the horizontal plane</dd></dl></div><div class='xr-var-data'><pre>array([0.197754, 0.189514, 0.178528, ..., 0.109863, 0.109863, 0.109863],\n",
" dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>x</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 383.1 ... 1.879e+05 1.882e+05</div><input id='attrs-9eae0d36-1027-49cb-a209-433d730e9ed3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-9eae0d36-1027-49cb-a209-433d730e9ed3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-6881d769-e037-4c1e-83f6-30e39077f2eb' class='xr-var-data-in' type='checkbox'><label for='data-6881d769-e037-4c1e-83f6-30e39077f2eb' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>east_west_distance_from_radar</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>array([[ 0. , 383.0592 , 766.1183 , ..., 190306.98 ,\n",
" 190689.66 , 191072.31 ],\n",
" [ 0. , 388.71353, 777.4269 , ..., 193116.9 ,\n",
" 193505.22 , 193893.5 ],\n",
" [ 0. , 394.00897, 788.01776, ..., 195748.81 ,\n",
" 196142.45 , 196536.03 ],\n",
" ...,\n",
" [ 0. , 365.7386 , 731.4771 , ..., 181710.11 ,\n",
" 182075.48 , 182440.86 ],\n",
" [ 0. , 371.69568, 743.3913 , ..., 184669.77 ,\n",
" 185041.11 , 185412.42 ],\n",
" [ 0. , 377.3642 , 754.7283 , ..., 187486.06 ,\n",
" 187863.05 , 188240.05 ]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>y</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 321.3 ... 1.633e+05 1.636e+05</div><input id='attrs-b7c2b54b-d653-4abd-a600-3a977cb360be' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-b7c2b54b-d653-4abd-a600-3a977cb360be' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-d5a03a21-f245-47a4-a24e-c6a0a24ac06f' class='xr-var-data-in' type='checkbox'><label for='data-d5a03a21-f245-47a4-a24e-c6a0a24ac06f' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>north_south_distance_from_radar</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>array([[ 0. , 321.34488, 642.6897 , ..., 159646.8 ,\n",
" 159967.83 , 160288.81 ],\n",
" [ 0. , 314.4821 , 628.964 , ..., 156237.95 ,\n",
" 156552.11 , 156866.25 ],\n",
" [ 0. , 307.8221 , 615.64404, ..., 152930.05 ,\n",
" 153237.58 , 153545.08 ],\n",
" ...,\n",
" [ 0. , 340.9315 , 681.8629 , ..., 169385.17 ,\n",
" 169725.78 , 170066.38 ],\n",
" [ 0. , 334.42688, 668.8537 , ..., 166153.48 ,\n",
" 166487.6 , 166821.69 ],\n",
" [ 0. , 328.0172 , 656.03436, ..., 162968.97 ,\n",
" 163296.67 , 163624.36 ]], dtype=float32)</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>z</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>0.0 2.0 3.0 ... 4.125e+03 4.141e+03</div><input id='attrs-c4a16323-56eb-437c-9d54-45a3f3b5e567' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-c4a16323-56eb-437c-9d54-45a3f3b5e567' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-07693452-eea5-40d5-be85-53c0d24895c0' class='xr-var-data-in' type='checkbox'><label for='data-07693452-eea5-40d5-be85-53c0d24895c0' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>standard_name :</span></dt><dd>height_above_ground</dd><dt><span>units :</span></dt><dd>meters</dd></dl></div><div class='xr-var-data'><pre>array([[0.000e+00, 2.000e+00, 3.000e+00, ..., 4.491e+03, 4.507e+03,\n",
" 4.524e+03],\n",
" [0.000e+00, 1.000e+00, 3.000e+00, ..., 4.455e+03, 4.471e+03,\n",
" 4.488e+03],\n",
" [0.000e+00, 1.000e+00, 3.000e+00, ..., 4.408e+03, 4.423e+03,\n",
" 4.440e+03],\n",
" ...,\n",
" [0.000e+00, 1.000e+00, 2.000e+00, ..., 4.110e+03, 4.125e+03,\n",
" 4.141e+03],\n",
" [0.000e+00, 1.000e+00, 2.000e+00, ..., 4.110e+03, 4.125e+03,\n",
" 4.141e+03],\n",
" [0.000e+00, 1.000e+00, 2.000e+00, ..., 4.110e+03, 4.125e+03,\n",
" 4.141e+03]], dtype=float32)</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-541e12b0-0f93-476f-8712-661e1d44bc05' class='xr-section-summary-in' type='checkbox' checked><label for='section-541e12b0-0f93-476f-8712-661e1d44bc05' class='xr-section-summary' >Data variables: <span>(9)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-var-name'><span>reflectivity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-89f78fc7-b7ba-46b3-821f-52c57f0460da' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-89f78fc7-b7ba-46b3-821f-52c57f0460da' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-73528f91-e521-459b-8195-4a851a8a442d' class='xr-var-data-in' type='checkbox'><label for='data-73528f91-e521-459b-8195-4a851a8a442d' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Reflectivity</dd><dt><span>units :</span></dt><dd>dBZ</dd><dt><span>standard_name :</span></dt><dd>equivalent_reflectivity_factor</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>velocity</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-44bdad13-ca1c-4f2e-9dc3-f250ffb9ae60' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-44bdad13-ca1c-4f2e-9dc3-f250ffb9ae60' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-3fd11615-ceef-481d-af61-b9bbd7f3a405' class='xr-var-data-in' type='checkbox'><label for='data-3fd11615-ceef-481d-af61-b9bbd7f3a405' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Mean dopper velocity</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>radial_velocity_of_scatterers_away_from_instrument</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>spectrum_width</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-8d0cee4c-0e4f-4343-9be1-f5868208b35a' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-8d0cee4c-0e4f-4343-9be1-f5868208b35a' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-b8a83634-0184-4a16-9037-d89ec69f9e34' class='xr-var-data-in' type='checkbox'><label for='data-b8a83634-0184-4a16-9037-d89ec69f9e34' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Doppler spectrum width</dd><dt><span>units :</span></dt><dd>meters_per_second</dd><dt><span>standard_name :</span></dt><dd>doppler_spectrum_width</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>R</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-d6eaab51-0581-4b66-ae1d-ea17fd9e9045' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-d6eaab51-0581-4b66-ae1d-ea17fd9e9045' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-14fe2fa0-d562-4321-b151-eabed489786c' class='xr-var-data-in' type='checkbox'><label for='data-14fe2fa0-d562-4321-b151-eabed489786c' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Rain_Rate</dd><dt><span>units :</span></dt><dd>mm/h</dd><dt><span>standard_name :</span></dt><dd>Rain_Rate</dd></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_number</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>int32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-4415ecd5-73d9-499e-b03f-f82ad5fa2207' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-4415ecd5-73d9-499e-b03f-f82ad5fa2207' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-42e2b4f2-296d-4bbb-898f-e750e0f2c5a2' class='xr-var-data-in' type='checkbox'><label for='data-42e2b4f2-296d-4bbb-898f-e750e0f2c5a2' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep number</dd><dt><span>units :</span></dt><dd>count</dd><dt><span>standard_name :</span></dt><dd>sweep_number</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=int32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_fixed_angle</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>float32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-a1d996bf-5df8-4f79-b842-08f4213d41d3' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-a1d996bf-5df8-4f79-b842-08f4213d41d3' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-bc9c3c29-7237-4251-993a-3d4eac08e586' class='xr-var-data-in' type='checkbox'><label for='data-bc9c3c29-7237-4251-993a-3d4eac08e586' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Target angle for sweep</dd><dt><span>units :</span></dt><dd>degrees</dd><dt><span>standard_name :</span></dt><dd>target_fixed_angle</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=float32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>sweep_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-3b0e1a2d-eacf-40a6-9a33-fe9b35a0f12e' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-3b0e1a2d-eacf-40a6-9a33-fe9b35a0f12e' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-9900143d-3fdb-4a40-ae00-b351bde33845' class='xr-var-data-in' type='checkbox'><label for='data-9900143d-3fdb-4a40-ae00-b351bde33845' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Sweep mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>standard_name :</span></dt><dd>sweep_mode</dd><dt><span>comment :</span></dt><dd>Options are: &quot;sector&quot;, &quot;coplane&quot;, &quot;rhi&quot;, &quot;vertical_pointing&quot;, &quot;idle&quot;, &quot;azimuth_surveillance&quot;, &quot;elevation_surveillance&quot;, &quot;sunscan&quot;, &quot;pointing&quot;, &quot;manual_ppi&quot;, &quot;manual_rhi&quot;</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>prt_mode</span></div><div class='xr-var-dims'>()</div><div class='xr-var-dtype'>|S32</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-66289980-20b9-4d01-829c-4dcb1f824be0' class='xr-var-attrs-in' type='checkbox' ><label for='attrs-66289980-20b9-4d01-829c-4dcb1f824be0' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-ead39bdd-cf7e-4a63-ba1a-bfa5398c8770' class='xr-var-data-in' type='checkbox'><label for='data-ead39bdd-cf7e-4a63-ba1a-bfa5398c8770' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'><dt><span>long_name :</span></dt><dd>Pulsing mode</dd><dt><span>units :</span></dt><dd>unitless</dd><dt><span>comments :</span></dt><dd>Pulsing mode Options are: &quot;fixed&quot;, &quot;staggered&quot;, &quot;dual&quot;. Assumed &quot;fixed&quot; if missing.</dd><dt><span>meta_group :</span></dt><dd>instrument_parameters</dd></dl></div><div class='xr-var-data'><pre>[1 values with dtype=|S32]</pre></div></li><li class='xr-var-item'><div class='xr-var-name'><span>CMAP</span></div><div class='xr-var-dims'>(time, range)</div><div class='xr-var-dtype'>bool</div><div class='xr-var-preview xr-preview'>...</div><input id='attrs-bd48dddf-1328-4a85-9954-023fe58a86fb' class='xr-var-attrs-in' type='checkbox' disabled><label for='attrs-bd48dddf-1328-4a85-9954-023fe58a86fb' title='Show/Hide attributes'><svg class='icon xr-icon-file-text2'><use xlink:href='#icon-file-text2'></use></svg></label><input id='data-fb1b4f14-c90d-443c-932a-82e57dc1e766' class='xr-var-data-in' type='checkbox'><label for='data-fb1b4f14-c90d-443c-932a-82e57dc1e766' title='Show/Hide data repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-var-attrs'><dl class='xr-attrs'></dl></div><div class='xr-var-data'><pre>[180000 values with dtype=bool]</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-2cdc3918-afe8-45aa-acd1-69ea51646033' class='xr-section-summary-in' type='checkbox' ><label for='section-2cdc3918-afe8-45aa-acd1-69ea51646033' class='xr-section-summary' >Indexes: <span>(2)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><ul class='xr-var-list'><li class='xr-var-item'><div class='xr-index-name'><div>time</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-03134dec-0267-46e8-90d0-13dbad60af7a' class='xr-index-data-in' type='checkbox'/><label for='index-03134dec-0267-46e8-90d0-13dbad60af7a' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(DatetimeIndex([&#x27;2021-06-01 11:02:23&#x27;, &#x27;2021-06-01 11:02:24&#x27;,\n",
" &#x27;2021-06-01 11:02:24&#x27;, &#x27;2021-06-01 11:02:24&#x27;,\n",
" &#x27;2021-06-01 11:02:24&#x27;, &#x27;2021-06-01 11:02:24&#x27;,\n",
" &#x27;2021-06-01 11:02:24&#x27;, &#x27;2021-06-01 11:02:24&#x27;,\n",
" &#x27;2021-06-01 11:02:24&#x27;, &#x27;2021-06-01 11:02:24&#x27;,\n",
" ...\n",
" &#x27;2021-06-01 11:02:52&#x27;, &#x27;2021-06-01 11:02:52&#x27;,\n",
" &#x27;2021-06-01 11:02:52&#x27;, &#x27;2021-06-01 11:02:52&#x27;,\n",
" &#x27;2021-06-01 11:02:53&#x27;, &#x27;2021-06-01 11:02:53&#x27;,\n",
" &#x27;2021-06-01 11:02:53&#x27;, &#x27;2021-06-01 11:02:53&#x27;,\n",
" &#x27;2021-06-01 11:02:53&#x27;, &#x27;2021-06-01 11:02:53&#x27;],\n",
" dtype=&#x27;datetime64[ns]&#x27;, name=&#x27;time&#x27;, length=360, freq=None))</pre></div></li><li class='xr-var-item'><div class='xr-index-name'><div>range</div></div><div class='xr-index-preview'>PandasIndex</div><div></div><input id='index-fed1ea11-8b52-466c-a2d7-a971835a3b02' class='xr-index-data-in' type='checkbox'/><label for='index-fed1ea11-8b52-466c-a2d7-a971835a3b02' title='Show/Hide index repr'><svg class='icon xr-icon-database'><use xlink:href='#icon-database'></use></svg></label><div class='xr-index-data'><pre>PandasIndex(Float64Index([ 0.0, 500.0, 1000.0, 1500.0, 2000.0, 2500.0,\n",
" 3000.0, 3500.0, 4000.0, 4500.0,\n",
" ...\n",
" 245000.0, 245500.0, 246000.0, 246500.0, 247000.0, 247500.0,\n",
" 248000.0, 248500.0, 249000.0, 249500.0],\n",
" dtype=&#x27;float64&#x27;, name=&#x27;range&#x27;, length=500))</pre></div></li></ul></div></li><li class='xr-section-item'><input id='section-b98bf906-0db2-43be-a00e-63e1d936f413' class='xr-section-summary-in' type='checkbox' disabled ><label for='section-b98bf906-0db2-43be-a00e-63e1d936f413' class='xr-section-summary' title='Expand/collapse section'>Attributes: <span>(0)</span></label><div class='xr-section-inline-details'></div><div class='xr-section-details'><dl class='xr-attrs'></dl></div></li></ul></div></div>"
],
"text/plain": [
"<xarray.DatasetView>\n",
"Dimensions: (time: 360, range: 500)\n",
"Coordinates:\n",
" * time (time) datetime64[ns] 2021-06-01T11:02:23 ... 2021-06-...\n",
" * range (range) float32 0.0 500.0 1e+03 ... 2.49e+05 2.495e+05\n",
" azimuth (time) float32 50.01 51.03 52.0 ... 47.01 48.02 49.0\n",
" elevation (time) float32 0.1978 0.1895 0.1785 ... 0.1099 0.1099\n",
" x (time, range) float32 0.0 383.1 ... 1.879e+05 1.882e+05\n",
" y (time, range) float32 0.0 321.3 ... 1.633e+05 1.636e+05\n",
" z (time, range) float32 0.0 2.0 3.0 ... 4.125e+03 4.141e+03\n",
"Data variables:\n",
" reflectivity (time, range) float32 ...\n",
" velocity (time, range) float32 ...\n",
" spectrum_width (time, range) float32 ...\n",
" R (time, range) float32 ...\n",
" sweep_number int32 ...\n",
" sweep_fixed_angle float32 ...\n",
" sweep_mode |S32 ...\n",
" prt_mode |S32 ...\n",
" CMAP (time, range) bool ..."
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"swpx = nvol[\"sweep_0\"].ds\n",
"display(swpx)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Plot first sweep"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Text(0.5, 1.0, 'Reflectivity clutter removed')"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
},
{
"data": {
"image/png": "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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment