diff --git a/notebooks/pyart/pyart-basics.html b/notebooks/pyart/pyart-basics.html index 5e9529c..0ae6927 100644 --- a/notebooks/pyart/pyart-basics.html +++ b/notebooks/pyart/pyart-basics.html @@ -508,16 +508,15 @@
---------------------------------------------------------------------------
-ModuleNotFoundError Traceback (most recent call last)
-Cell In[1], line 8
- 4 import cartopy.crs as ccrs
- 5 import matplotlib.pyplot as plt
-----> 8 import pyart
- 9 from pyart.testing import get_test_data
- 11 warnings.filterwarnings('ignore')
-
-ModuleNotFoundError: No module named 'pyart'
+## You are using the Python ARM Radar Toolkit (Py-ART), an open source
+## library for working with weather radar data. Py-ART is partly
+## supported by the U.S. Department of Energy as part of the Atmospheric
+## Radiation Measurement (ARM) Climate Research Facility, an Office of
+## Science user facility.
+##
+## If you use this software to prepare a publication, please cite:
+##
+## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119
Downloading file 'swx_20120520_0641.nc' from 'https://adc.arm.gov/pyart/example_data/swx_20120520_0641.nc' to '/github/home/.cache/pyart-datasets'.
+
<pyart.core.radar.Radar at 0x7f1a5aa0d760>
+
dict_keys(['corrected_reflectivity_horizontal', 'reflectivity_horizontal', 'recalculated_diff_phase', 'specific_attenuation', 'unf_dp_phase_shift', 'mean_doppler_velocity', 'diff_phase', 'rain_rate_A', 'norm_coherent_power', 'dp_phase_shift', 'diff_reflectivity', 'proc_dp_phase_shift', 'copol_coeff'])
+
{'_FillValue': -9999.0, 'least_significant_digit': 2, 'units': 'dBZ', 'long_name': 'equivalent_reflectivity_factor', 'valid_min': -45.0, 'valid_max': 80.0, 'standard_name': 'equivalent_reflectivity_factor', 'data': masked_array(
+ data=[[-5.671875, 2.28125, -8.1171875, ..., --, -13.4765625, --],
+ [-5.6171875, 1.8984375, -10.0703125, ..., -2.6796875, -1.5390625,
+ --],
+ [-5.0390625, 2.625, -11.484375, ..., -8.984375, --, --],
+ ...,
+ [-5.9375, 1.46875, -12.3203125, ..., --, --, --],
+ [-5.9609375, 1.53125, -12.84375, ..., --, --, --],
+ [-8.7890625, 2.9140625, -12.09375, ..., --, --, --]],
+ mask=[[False, False, False, ..., True, False, True],
+ [False, False, False, ..., False, False, True],
+ [False, False, False, ..., False, True, True],
+ ...,
+ [False, False, False, ..., True, True, True],
+ [False, False, False, ..., True, True, True],
+ [False, False, False, ..., True, True, True]],
+ fill_value=-9999.0,
+ dtype=float32)}
+
We can go even further in the dictionary and access the actual reflectivity data.
We use add 'data'
at the end, which will extract the data array (which is a masked numpy array) from the dictionary.
<class 'numpy.ma.core.MaskedArray'> [[-5.671875 2.28125 -8.1171875 ... -- -13.4765625 --]
+ [-5.6171875 1.8984375 -10.0703125 ... -2.6796875 -1.5390625 --]
+ [-5.0390625 2.625 -11.484375 ... -8.984375 -- --]
+ ...
+ [-5.9375 1.46875 -12.3203125 ... -- -- --]
+ [-5.9609375 1.53125 -12.84375 ... -- -- --]
+ [-8.7890625 2.9140625 -12.09375 ... -- -- --]]
+
Lets’ check the size of this array…
(8800, 667)
+
This reflectivity data array, numpy array, is a two-dimensional array with dimensions:
8800 667
+
If we wanted to look the 300th ray, at the second gate, we would use something like the following:
-4.8046875
+
<Figure size 1000x1000 with 0 Axes>
+
Once we have a figure, let’s add our RadarMapDisplay
<Figure size 1000x1000 with 0 Axes>
+
Adding our map display without specifying a field to plot won’t do anything we need to specifically add a field to field using .plot_ppi_map()
By default, it will plot the elevation scan, the the default colormap from Matplotlib
… let’s customize!
We add the following arguements:
@@ -721,6 +794,9 @@You can change many parameters in the graph by changing the arguments to plot_ppi_map. As you can recall from earlier. simply view these arguments in a Jupyter notebook by typing:
Or, let’s view a different elevation scan! To do this, change the sweep parameter in the plot_ppi_map function.
Let’s take a look at a different field - for example, correlation coefficient (corr_coeff
)
---------------------------------------------------------------------------
-ModuleNotFoundError Traceback (most recent call last)
-Cell In[1], line 8
- 4 import cartopy.crs as ccrs
- 5 import matplotlib.pyplot as plt
-----> 8 import pyart
- 9 from pyart.testing import get_test_data
- 11 warnings.filterwarnings('ignore')
-
-ModuleNotFoundError: No module named 'pyart'
+## You are using the Python ARM Radar Toolkit (Py-ART), an open source
+## library for working with weather radar data. Py-ART is partly
+## supported by the U.S. Department of Energy as part of the Atmospheric
+## Radiation Measurement (ARM) Climate Research Facility, an Office of
+## Science user facility.
+##
+## If you use this software to prepare a publication, please cite:
+##
+## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119
As mentioned before, the dataset is currently in the antenna coordinate system measured as distance from the radar
@@ -629,6 +631,11 @@<
+
+29
+
+
+
We can apply this to the horizontal (x, y) dimensions as well.
@@ -642,6 +649,11 @@ Setup our Gridding Routine with <
+
+29 80 80
+
+
+
Use our configuration to grid the data!¶
@@ -660,6 +672,11 @@ Use our configuration to grid the data!
+<pyart.core.grid.Grid at 0x7f3e33e19d60>
+
+
+
We now have a pyart.core.Grid
object!
@@ -680,6 +697,9 @@ Plot a horizontal view of the data
+
+
@@ -696,6 +716,9 @@ Plot a Latitudinal Slice
+
+
Now, our plotting routine is a one-liner, starting with the horizontal slice:
@@ -718,6 +1821,9 @@ Plot with Xarray
+
+
And a vertical slice at a given y dimension (latitude)
@@ -729,6 +1835,9 @@ Plot with Xarray
+
+
diff --git a/notebooks/pyart/pyart-processing.html b/notebooks/pyart/pyart-processing.html
index c7ac689..4ca43f9 100644
--- a/notebooks/pyart/pyart-processing.html
+++ b/notebooks/pyart/pyart-processing.html
@@ -352,15 +352,48 @@ Overview
+## You are using the Python ARM Radar Toolkit (Py-ART), an open source
+## library for working with weather radar data. Py-ART is partly
+## supported by the U.S. Department of Energy as part of the Atmospheric
+## Radiation Measurement (ARM) Climate Research Facility, an Office of
+## Science user facility.
+##
+## If you use this software to prepare a publication, please cite:
+##
+## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119
+
+
---------------------------------------------------------------------------
-ModuleNotFoundError Traceback (most recent call last)
-Cell In[1], line 8
- 5 import cartopy
+FileNotFoundError Traceback (most recent call last)
+Cell In[1], line 9
6 import matplotlib.pyplot as plt
-----> 8 import pyart
- 9 pyart.config.load_config('../../pyrad_config/mch_config.py')
+ 8 import pyart
+----> 9 pyart.config.load_config('../../pyrad_config/mch_config.py')
+
+File /srv/conda/envs/notebook/lib/python3.9/site-packages/pyart/config.py:81, in load_config(filename)
+ 79 try:
+ 80 from importlib.machinery import SourceFileLoader
+---> 81 cfile = SourceFileLoader('metadata_config', filename).load_module()
+ 82 except ImportError:
+ 83 import imp
+
+File <frozen importlib._bootstrap_external>:529, in _check_name_wrapper(self, name, *args, **kwargs)
+
+File <frozen importlib._bootstrap_external>:1029, in load_module(self, fullname)
+
+File <frozen importlib._bootstrap_external>:854, in load_module(self, fullname)
+
+File <frozen importlib._bootstrap>:271, in _load_module_shim(self, fullname)
+
+File <frozen importlib._bootstrap>:613, in _exec(spec, module)
+
+File <frozen importlib._bootstrap_external>:846, in exec_module(self, module)
+
+File <frozen importlib._bootstrap_external>:982, in get_code(self, fullname)
+
+File <frozen importlib._bootstrap_external>:1039, in get_data(self, path)
-ModuleNotFoundError: No module named 'pyart'
+FileNotFoundError: [Errno 2] No such file or directory: '../../pyrad_config/mch_config.py'
diff --git a/reports/notebooks/pyart/pyart-processing.err.log b/reports/notebooks/pyart/pyart-processing.err.log
index 108383a..18bac86 100644
--- a/reports/notebooks/pyart/pyart-processing.err.log
+++ b/reports/notebooks/pyart/pyart-processing.err.log
@@ -27,14 +27,48 @@ pyart.config.load_config('../../pyrad_config/mch_config.py')
------------------
+----- stdout -----
+
+## You are using the Python ARM Radar Toolkit (Py-ART), an open source
+## library for working with weather radar data. Py-ART is partly
+## supported by the U.S. Department of Energy as part of the Atmospheric
+## Radiation Measurement (ARM) Climate Research Facility, an Office of
+## Science user facility.
+##
+## If you use this software to prepare a publication, please cite:
+##
+## JJ Helmus and SM Collis, JORS 2016, doi: 10.5334/jors.119
+------------------
[0;31m---------------------------------------------------------------------------[0m
-[0;31mModuleNotFoundError[0m Traceback (most recent call last)
-Cell [0;32mIn[1], line 8[0m
-[1;32m 5[0m [38;5;28;01mimport[39;00m [38;5;21;01mcartopy[39;00m
+[0;31mFileNotFoundError[0m Traceback (most recent call last)
+Cell [0;32mIn[1], line 9[0m
[1;32m 6[0m [38;5;28;01mimport[39;00m [38;5;21;01mmatplotlib[39;00m[38;5;21;01m.[39;00m[38;5;21;01mpyplot[39;00m [38;5;28;01mas[39;00m [38;5;21;01mplt[39;00m
-[0;32m----> 8[0m [38;5;28;01mimport[39;00m [38;5;21;01mpyart[39;00m
-[1;32m 9[0m pyart[38;5;241m.[39mconfig[38;5;241m.[39mload_config([38;5;124m'[39m[38;5;124m../../pyrad_config/mch_config.py[39m[38;5;124m'[39m)
+[1;32m 8[0m [38;5;28;01mimport[39;00m [38;5;21;01mpyart[39;00m
+[0;32m----> 9[0m [43mpyart[49m[38;5;241;43m.[39;49m[43mconfig[49m[38;5;241;43m.[39;49m[43mload_config[49m[43m([49m[38;5;124;43m'[39;49m[38;5;124;43m../../pyrad_config/mch_config.py[39;49m[38;5;124;43m'[39;49m[43m)[49m
+
+File [0;32m/srv/conda/envs/notebook/lib/python3.9/site-packages/pyart/config.py:81[0m, in [0;36mload_config[0;34m(filename)[0m
+[1;32m 79[0m [38;5;28;01mtry[39;00m:
+[1;32m 80[0m [38;5;28;01mfrom[39;00m [38;5;21;01mimportlib[39;00m[38;5;21;01m.[39;00m[38;5;21;01mmachinery[39;00m [38;5;28;01mimport[39;00m SourceFileLoader
+[0;32m---> 81[0m cfile [38;5;241m=[39m [43mSourceFileLoader[49m[43m([49m[38;5;124;43m'[39;49m[38;5;124;43mmetadata_config[39;49m[38;5;124;43m'[39;49m[43m,[49m[43m [49m[43mfilename[49m[43m)[49m[38;5;241;43m.[39;49m[43mload_module[49m[43m([49m[43m)[49m
+[1;32m 82[0m [38;5;28;01mexcept[39;00m [38;5;167;01mImportError[39;00m:
+[1;32m 83[0m [38;5;28;01mimport[39;00m [38;5;21;01mimp[39;00m
+
+File [0;32m:529[0m, in [0;36m_check_name_wrapper[0;34m(self, name, *args, **kwargs)[0m
+
+File [0;32m:1029[0m, in [0;36mload_module[0;34m(self, fullname)[0m
+
+File [0;32m:854[0m, in [0;36mload_module[0;34m(self, fullname)[0m
+
+File [0;32m:271[0m, in [0;36m_load_module_shim[0;34m(self, fullname)[0m
+
+File [0;32m:613[0m, in [0;36m_exec[0;34m(spec, module)[0m
+
+File [0;32m:846[0m, in [0;36mexec_module[0;34m(self, module)[0m
+
+File [0;32m:982[0m, in [0;36mget_code[0;34m(self, fullname)[0m
+
+File [0;32m:1039[0m, in [0;36mget_data[0;34m(self, path)[0m
-[0;31mModuleNotFoundError[0m: No module named 'pyart'
+[0;31mFileNotFoundError[0m: [Errno 2] No such file or directory: '../../pyrad_config/mch_config.py'
diff --git a/searchindex.js b/searchindex.js
index b9ae173..c484f76 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["README", "notebooks/pyart/README", "notebooks/pyart/pyart-basics", "notebooks/pyart/pyart-gridding", "notebooks/pyart/pyart-processing", "notebooks/pyrad/README", "notebooks/pyrad/description-config"], "filenames": ["README.md", "notebooks/pyart/README.md", "notebooks/pyart/pyart-basics.ipynb", "notebooks/pyart/pyart-gridding.ipynb", "notebooks/pyart/pyart-processing.ipynb", "notebooks/pyrad/README.md", "notebooks/pyrad/description-config.ipynb"], "titles": ["WMO/ASEAN radar workshop - Pyrad course", "Py-ART Tutorial", "Py-ART Basics", "Py-ART Gridding", "Py-ART Processing", "pyrad Tutorial", "Description of pyrad config files"], "terms": {"thi": [0, 1, 2, 3, 4, 5, 6], "content": [0, 1, 2, 5], "us": [0, 4, 6], "short": 0, "held": 0, "weather": [0, 2], "2024": 0, "jordi": 0, "figuera": 0, "i": [0, 1, 2, 4, 5], "ventura": 0, "daniel": 0, "wolfensberg": 0, "http": 0, "openradarsci": 0, "org": 0, "asean2024": 0, "you": [0, 1, 2, 3, 4], "can": [0, 3, 4], "either": [0, 4, 6], "local": 0, "The": [0, 1, 2, 3, 4], "simplest": 0, "wai": 0, "interact": 0, "jupyt": [0, 2], "through": [0, 2, 3], "which": [0, 2, 3, 4], "enabl": 0, "execut": 0, "book": 0, "cloud": [0, 2, 4], "detail": 0, "how": [0, 1, 3, 6], "work": [0, 2, 4], "ar": [0, 1, 2, 3, 4], "import": [0, 4], "now": [0, 2, 3, 4], "all": [0, 2, 4], "need": [0, 2, 3, 4], "know": [0, 1], "launch": 0, "pythia": 0, "cookbook": 0, "chapter": 0, "via": 0, "simpli": [0, 2], "navig": 0, "mous": 0, "top": 0, "right": [0, 3, 4], "corner": 0, "view": [0, 2], "click": 0, "rocket": 0, "ship": 0, "icon": 0, "see": [0, 2], "figur": [0, 2, 3, 4], "below": [0, 4], "sure": 0, "select": [0, 2], "after": [0, 2, 4], "moment": [0, 2, 4, 6], "should": [0, 2, 3], "present": [0, 2], "e": [0, 6], "ll": 0, "abl": 0, "even": [0, 2, 4], "chang": [0, 2], "exampl": [0, 2, 3, 4], "program": [0, 2, 6], "code": [0, 4], "cell": [0, 2, 3, 4], "have": [0, 2, 3, 4], "output": [0, 4], "first": [0, 2, 3], "until": 0, "them": 0, "press": 0, "shift": [0, 4], "enter": 0, "complet": 0, "live": 0, "describ": 0, "get": [0, 2], "start": [0, 1, 2, 3, 4], "In": [0, 2, 3, 4], "order": [0, 3, 4], "materi": 0, "instal": 0, "conda": 0, "its": [0, 2], "fulli": 0, "open": [0, 2, 4], "sourc": [0, 2, 3], "altern": 0, "miniforg": 0, "If": [0, 1, 2, 4], "interest": [0, 4], "comput": [0, 3], "follow": [0, 2, 6], "workflow": 0, "clone": 0, "github": [0, 2, 3, 4], "com": 0, "openradar": 0, "repositori": 0, "git": 0, "move": [0, 1, 6], "directori": 0, "cd": [0, 6], "creat": [0, 2, 4], "activ": 0, "environ": [0, 4], "from": [0, 2, 3, 4], "yml": 0, "file": [0, 2, 3, 4, 5], "env": [0, 4], "f": 0, "sinc": [0, 2, 3, 4], "pydda": [0, 6], "arm_pyart": 0, "we": [0, 2, 3, 4], "remov": 0, "our": [0, 4], "meteoswiss": [0, 2, 3, 4, 6], "fork": 0, "uninstal": 0, "final": 0, "defin": [0, 4, 6], "some": [0, 1, 4], "variabl": [0, 2, 4], "requir": [0, 1, 4], "cwd": 0, "dirnam": 0, "1": [0, 2, 3, 4], "pwd": 0, "p": 0, "basenam": 0, "export": 0, "pyart_config": [0, 4], "pyrad_config": [0, 4], "mf_config": 0, "py": [0, 6], "metranetlib_path": 0, "lib": [0, 4], "brief": 1, "overview": 1, "main": 1, "function": [1, 2, 3, 4], "foundat": 1, "includ": [1, 2, 3, 5], "an": [1, 6], "packag": [1, 4], "read": [1, 6], "data": [1, 6], "plot": [1, 4], "util": [1, 4], "tool": 1, "process": [1, 2, 3], "perform": [1, 2, 6], "common": [1, 2], "radar": [1, 3, 4], "new": [1, 2, 3], "good": [1, 4], "place": 1, "befor": [1, 3, 4], "onto": [1, 2], "within": [2, 3, 4], "notebook": [2, 3, 4], "cover": [2, 3, 4], "gener": [2, 6], "concept": [2, 3], "note": [2, 3, 4], "intro": [2, 3], "cartopi": [2, 3, 4], "help": [2, 3], "featur": [2, 3, 4], "matplotlib": [2, 3, 4], "numpi": [2, 3, 4], "arrai": [2, 3, 4], "time": [2, 3], "learn": [2, 3], "45": [2, 3, 4], "minut": [2, 3], "o": [2, 3], "warn": [2, 3, 4], "cr": [2, 3, 4], "ccr": [2, 3, 4], "pyplot": [2, 3, 4], "plt": [2, 3, 4], "test": 2, "get_test_data": [2, 3], "filterwarn": [2, 3], "ignor": [2, 3, 4], "store": [2, 3, 4], "msrad": 4, "anaconda3": 4, "wolfensb": 4, "rainforest_test": 4, "python3": 4, "10": [2, 4], "site": 4, "tqdm": [], "auto": [], "21": [], "tqdmwarn": [], "iprogress": [], "found": 2, "pleas": [], "updat": [], "ipywidget": [], "readthedoc": [], "en": [], "stabl": [], "user_instal": [], "html": [], "autonotebook": [], "notebook_tqdm": [], "python": [2, 4], "arm": 2, "toolkit": [], "librari": [], "partli": [], "support": [], "u": [4, 6], "depart": [], "energi": [], "part": 2, "atmospher": [], "radiat": [], "measur": [3, 4], "climat": 2, "research": 2, "facil": [], "offic": [], "scienc": [], "user": [2, 6], "softwar": 2, "prepar": [], "public": [], "cite": [], "jj": [], "helmu": [], "sm": [], "colli": [], "jor": [], "2016": [4, 6], "doi": [], "5334": [], "119": [], "develop": 2, "began": 2, "address": 2, "acquisit": 2, "number": [2, 3], "scan": [2, 3, 4], "precipit": [2, 4], "american": 2, "recoveri": 2, "act": 2, "project": 2, "ha": [2, 3], "expand": 2, "varieti": [2, 3], "wider": 2, "base": [2, 4], "model": [2, 3, 4], "been": [2, 4], "releas": 2, "under": 2, "bsd": 2, "licens": 2, "run": [2, 6], "linux": 2, "x": [2, 3, 4, 6], "It": [2, 4], "also": [2, 3, 4], "window": 2, "more": [2, 4], "limit": [2, 3, 4], "task": 2, "complex": 2, "pipelin": 2, "specif": [2, 3, 4, 6], "format": [2, 3, 6], "visual": [2, 4], "correct": [2, 6], "while": [2, 3], "antenna": 2, "coordin": [2, 6], "doppler": 2, "unfold": 2, "de": 2, "alias": 2, "attenu": [2, 6], "phase": [2, 4], "linear": [2, 6], "method": [2, 3, 4, 6], "map": [2, 4, 6], "one": [2, 3, 4, 6], "multipl": [2, 3], "cartesian": 2, "grid": [2, 4], "retriev": [2, 4], "write": 2, "radial": 2, "netcdf": 2, "when": 2, "modul": [2, 3, 4], "differ": [2, 3, 4, 6], "cf": 2, "lassen": 2, "document": [2, 3], "here": [2, 4], "For": [2, 3], "most": [2, 3, 4], "list": 2, "page": 2, "suffic": 2, "abil": 2, "automat": 2, "detect": [2, 4], "let": [2, 3, 4], "check": 2, "out": [2, 4], "argument": 2, "take": [2, 3, 4], "cfradial": [2, 4], "swx_20120520_0641": [2, 3], "nc": [2, 3, 4], "core": [3, 4], "0x2addeca9b640": [], "actual": [2, 6], "where": 2, "reflect": [2, 3, 4, 6], "veloc": 2, "To": 2, "add": [2, 4], "kei": 2, "addit": 2, "dict_kei": [], "corrected_reflectivity_horizont": [2, 3], "reflectivity_horizont": [], "recalculated_diff_phas": [], "specific_attenu": 4, "unf_dp_phase_shift": [], "mean_doppler_veloc": [], "diff_phas": [], "rain_rate_a": [], "norm_coherent_pow": [], "dp_phase_shift": [], "diff_reflect": [], "proc_dp_phase_shift": [], "copol_coeff": 2, "dictionari": 2, "each": [2, 3], "contain": [2, 4], "unit": 2, "access": 2, "just": 2, "ad": 2, "individu": 2, "string": 2, "bracket": 2, "look": [2, 3, 4], "print": [2, 3], "_fillvalu": [], "9999": [], "0": [2, 3, 4], "least_significant_digit": [], "2": [2, 4], "dbz": 4, "long_nam": [], "equivalent_reflectivity_factor": [], "valid_min": [], "valid_max": [], "80": [], "standard_nam": [], "masked_arrai": [], "5": [2, 3, 4], "671875": [], "28125": [], "8": [2, 3, 4], "1171875": [], "13": 4, "4765625": [], "6171875": [], "8984375": [], "0703125": [], "6796875": [], "5390625": [], "0390625": [], "625": [], "11": [2, 3], "484375": [], "984375": [], "9375": [], "46875": [], "12": [2, 3], "3203125": [], "9609375": [], "53125": [], "84375": [], "7890625": [], "9140625": [], "09375": [], "mask": [2, 4], "fals": [], "true": 4, "fill_valu": [], "dtype": [], "float32": [], "go": 2, "further": 2, "end": 2, "type": [2, 4], "class": [2, 4, 6], "ma": [], "maskedarrai": 4, "size": 2, "shape": [2, 3], "8800": [], "667": [], "two": [2, 6], "dimension": 2, "dimens": [2, 3], "gate": [2, 4], "awai": 2, "rai": 2, "direct": [2, 3, 6], "around": [2, 4], "nrai": 2, "ngate": 2, "want": 2, "300th": 2, "second": 2, "would": [2, 3], "someth": 2, "like": [2, 4], "300": 2, "4": [2, 3, 4], "8046875": [], "load": [2, 4, 6], "inspect": 2, "logic": 2, "thing": 2, "done": 2, "graph": [2, 3, 4], "primari": 2, "radardisplai": [2, 3, 4], "airborneradardisplai": 2, "gridmapdisplai": [2, 3], "deal": 2, "geograph": 2, "fig": [2, 3, 4], "figsiz": [2, 3, 4], "1000x1000": [], "ax": 4, "onc": [2, 3], "displai": [2, 3, 4], "without": 2, "specifi": [2, 6], "won": 2, "t": [2, 4], "anyth": 2, "plot_ppi_map": [2, 4], "By": [2, 6], "default": [2, 3, 4], "elev": [2, 3, 4, 6], "colormap": [2, 4], "custom": 2, "arguement": 2, "sweep": [2, 4], "3": [2, 4], "fourth": 2, "index": 2, "vmin": [2, 3, 4], "20": [2, 3], "minimum": 2, "valu": 2, "colorbar": 2, "vmax": [2, 3, 4], "60": [2, 3, 4], "maximum": 2, "platecarre": 2, "latitud": [2, 3, 4, 6], "longitud": [2, 3, 4, 6], "system": [2, 3], "cmap": [2, 3], "pyart_homeyerrainbow": [2, 3], "provid": [2, 4], "show": [2, 4], "mani": 2, "paramet": [2, 6], "As": [2, 3], "recal": 2, "earlier": 2, "pyart_carbone42": 2, "Or": 2, "correl": 2, "coeffici": 2, "corr_coeff": 2, "few": [2, 3, 4], "walk": [2, 3], "appli": [2, 3], "clean": [2, 3], "advanc": [2, 3], "essenti": [2, 3, 4], "link": [2, 3, 4], "doc": [2, 3, 4], "issu": [2, 3, 4], "tracker": [2, 3, 4], "choos": 3, "same": 3, "basic": 3, "io": [3, 4], "polar": [3, 4, 6], "angl": [3, 6], "rang": [3, 6], "360": 3, "degre": 3, "north": [3, 4], "radiu": 3, "between": [3, 4, 6], "ground": 3, "challeng": 3, "make": [3, 6], "compar": [3, 4], "lat": 3, "lon": 3, "transform": 3, "daa": 3, "coordiant": 3, "fortun": 3, "your": [3, 4], "easili": 3, "dice": 3, "other": [3, 6], "combin": 3, "ex": 3, "There": [3, 4], "decis": 3, "made": 3, "dure": 3, "larg": [3, 4], "impact": 3, "regrid": 3, "resolut": [3, 4], "my": 3, "interpol": [3, 4], "smooth": [3, 6], "alwai": 3, "wrong": 3, "answer": 3, "understand": 3, "option": 3, "avail": 3, "experi": 3, "best": 3, "case": 3, "dig": 3, "previou": 3, "northern": 3, "oklahoma": 3, "quick": 3, "lowest": 3, "closest": 3, "plot_ppi": [3, 4], "mention": 3, "current": 3, "distanc": 3, "characterist": 3, "similar": 3, "except": 3, "instead": 3, "about": 3, "desir": 3, "extent": [3, 6], "might": 3, "imagin": 3, "km": [3, 4], "south": 3, "y": 3, "west": [3, 4], "east": [3, 4], "15": 3, "z": [3, 4, 6], "vertic": [3, 4], "500": 3, "m": [3, 4, 6], "spatial": [3, 4], "input": [3, 4], "set": 3, "meter": 3, "z_grid_limit": 3, "15_000": 3, "y_grid_limit": 3, "20_000": 3, "x_grid_limit": 3, "again": 3, "grid_resolut": 3, "point": [3, 4, 6], "def": 3, "compute_number_of_point": 3, "return": 3, "int": 3, "helper": 3, "z_grid_point": 3, "29": [], "well": [3, 4], "x_grid_point": 3, "y_grid_point": 3, "grid_shap": 3, "grid_limit": 3, "0x2b17bfaf8550": [], "along": [3, 6], "singl": 3, "level": [3, 4], "plot_grid": 3, "plot_latitude_slic": 3, "36": 3, "xlim": 3, "anoth": [3, 4], "neat": 3, "d": 3, "to_xarrai": 3, "lt": [], "gt": [], "2011": [], "05": [], "06": [], "42": [], "float64": [], "018e": [], "03": [], "5e": [], "04": [], "31": [], "67": [], "97": [], "82": [], "81": [], "37": [], "2e": [], "949e": [], "14": [], "3938": [], "nan": [], "43": [], "22": [], "2725": [], "153": [], "618": [], "35": [], "7812": [], "07": [], "5355": [], "3767": [], "roi": [], "765": [], "6": 4, "49": [], "datasetdimens": [], "1z": [], "29y": [], "80x": [], "80coordin": [], "object2011": [], "11arrai": [], "cftime": [], "datetimegregorian": [], "has_year_zero": [], "float64500": [], "04standard_nam": [], "projection_z_coordinatelong_nam": [], "plane": [], "originaxi": [], "zunit": [], "mposit": [], "uparrai": [], "1017": [], "857143": [], "1535": [], "714286": [], "2053": [], "571429": [], "2571": [], "428571": [], "3089": [], "285714": [], "3607": [], "142857": [], "4125": [], "4642": [], "5160": [], "5678": [], "6196": [], "6714": [], "7232": [], "7750": [], "8267": [], "8785": [], "9303": [], "9821": [], "10339": [], "10857": [], "11375": [], "11892": [], "12410": [], "12928": [], "13446": [], "13964": [], "14482": [], "15000": [], "float6436": [], "67long_nam": [], "centerunit": [], "degree_nstandard_nam": [], "latitudearrai": [], "31076087": [], "31077127": [], "31078141": [], "31531438": [], "31532478": [], "31533492": [], "31986789": [], "31987829": [], "31988843": [], "6613811": [], "66139158": [], "66140179": [], "66593461": [], "66594509": [], "6659553": [], "67048812": [], "6704986": [], "67050881": [], "38": [], "37long_nam": [], "degree_estandard_nam": [], "longitudearrai": [], "81737399": [], "81172319": [], "80607239": [], "38226095": [], "37661015": [], "37095935": [], "81738704": [], "81173591": [], "80608478": [], "38224855": [], "37659742": [], "37094629": [], "8174001": [], "81174864": [], "80609718": [], "38223616": [], "37658469": [], "37093323": [], "81838653": [], "8127101": [], "80703366": [], "38129967": [], "37562324": [], "3699468": [], "81839978": [], "81272301": [], "80704624": [], "38128709": [], "37561032": [], "36993356": [], "81841303": [], "81273592": [], "80705882": [], "38127451": [], "37559741": [], "36992031": [], "projection_y_coordinatelong_nam": [], "yunit": [], "marrai": [], "20000": [], "19493": [], "670886": [], "18987": [], "341772": [], "18481": [], "012658": [], "17974": [], "683544": [], "17468": [], "35443": [], "16962": [], "025316": [], "16455": [], "696203": [], "15949": [], "367089": [], "15443": [], "037975": [], "14936": [], "708861": [], "14430": [], "379747": [], "13924": [], "050633": [], "13417": [], "721519": [], "12911": [], "392405": [], "12405": [], "063291": [], "11898": [], "734177": [], "11392": [], "405063": [], "10886": [], "075949": [], "10379": [], "746835": [], "9873": [], "417722": [], "9367": [], "088608": [], "8860": [], "759494": [], "8354": [], "43038": [], "7848": [], "101266": [], "7341": [], "772152": [], "6835": [], "443038": [], "6329": [], "113924": [], "5822": [], "78481": [], "5316": [], "455696": [], "4810": [], "126582": [], "4303": [], "797468": [], "3797": [], "468354": [], "3291": [], "139241": [], "2784": [], "810127": [], "2278": [], "481013": [], "1772": [], "151899": [], "1265": [], "822785": [], "759": [], "493671": [], "253": [], "164557": [], "projection_x_coordinatelong_nam": [], "xunit": [], "float320": [], "328": [], "2792": [], "nan_fillvalu": [], "0least_significant_digit": [], "2unit": [], "kmlong_nam": [], "specific_differential_phase_hvstandard_nam": [], "specific_differential_phase_hvvalid_max": [], "0valid_min": [], "0arrai": [], "39384708": [], "3280109": [], "27918172": [], "33975467": [], "37267923": [], "40358114": [], "58117306": [], "53130794": [], "3550077": [], "37338868": [], "40296742": [], "6183313": [], "737861": [], "6030566": [], "5171238": [], "38776714": [], "589937": [], "76450324": [], "11169312": [], "1755807": [], "1316314": [], "04069889": [], "04200707": [], "06410424": [], "12137793": [], "16098005": [], "15206368": [], "05874029": [], "04263179": [], "03657141": [], "05757918": [], "15391691": [], "21629712": [], "06321226": [], "06439929": [], "04148797": [], "7053635": [], "4540436": [], "43115824": [], "250657": [], "2552164": [], "24889752": [], "9173357": [], "76775736": [], "4959262": [], "24475639": [], "23949221": [], "2509762": [], "83692324": [], "9031052": [], "70014554": [], "22930858": [], "24111414": [], "3157209": [], "9": [2, 3, 4], "386": [], "543": [], "053": [], "22_fillvalu": [], "slong_nam": [], "radial_velocity_of_scatterers_away_from_instrumentstandard_nam": [], "radial_velocity_of_scatterers_away_from_instrumentvalid_max": [], "95": [], "14250965e": [], "01": [], "38614655e": [], "00": [], "54263973e": [], "25225508e": [], "97501564e": [], "38302422e": [], "10423336e": [], "00912714e": [], "41620064e": [], "27650452e": [], "00687122e": [], "18266964e": [], "06498222e": [], "97581005e": [], "63360119e": [], "91365862e": [], "69772112e": [], "51706445e": [], "12225838e": [], "36799889e": [], "34229555e": [], "54073572e": [], "54098520e": [], "53146086e": [], "26915607e": [], "36440449e": [], "31507320e": [], "52770004e": [], "54236784e": [], "52902088e": [], "41317787e": [], "46821232e": [], "43974562e": [], "54216375e": [], "53266916e": [], "50311718e": [], "17013578e": [], "09065905e": [], "05703592e": [], "73937492e": [], "66862297e": [], "05210333e": [], "17275076e": [], "15484457e": [], "14341202e": [], "05333495e": [], "07916164e": [], "58616066e": [], "18497696e": [], "17427864e": [], "17252455e": [], "87065649e": [], "7": 4, "74678946e": [], "81864405e": [], "98206466e": [], "41096932e": [], "84059954e": [], "87543237e": [], "04775620e": [], "10579681e": [], "07957470e": [], "67624855e": [], "25127751e": [], "21632707e": [], "30014598e": [], "58425510e": [], "66130996e": [], "60002935e": [], "77226639e": [], "61413705e": [], "14764547e": [], "62339252e": [], "25518179e": [], "54000390e": [], "94059110e": [], "18433350e": [], "51320195e": [], "07326233e": [], "23468482e": [], "87334991e": [], "00920570e": [], "35740769e": [], "87606978e": [], "95559144e": [], "94342452e": [], "03030992e": [], "84755903e": [], "84824818e": [], "31720354e": [], "02": [], "95991379e": [], "96322602e": [], "10755122e": [], "61156619e": [], "89939904e": [], "07288063e": [], "02706492e": [], "22464430e": [], "34230626e": [], "09388947e": [], "47645760e": [], "05762947e": [], "00347531e": [], "04632628e": [], "05266070e": [], "21983778e": [], "3373": [], "08516": [], "08782_fillvalu": [], "5comment": [], "normal": [], "coher": [], "powerstandard_nam": [], "signal_qualitylong_nam": [], "signal_qualityvalid_min": [], "0unit": [], "ratiovalid_max": [], "27254432": [], "33732003": [], "60975116": [], "14783083": [], "15152313": [], "16354299": [], "3725878": [], "4203394": [], "6501501": [], "16032329": [], "14969139": [], "1342715": [], "44304436": [], "53180563": [], "6834682": [], "16724406": [], "15156786": [], "13165912": [], "28796026": [], "4533122": [], "6361005": [], "81904864": [], "8444454": [], "89995027": [], "37693366": [], "54521847": [], "6871044": [], "6964567": [], "76627135": [], "844395": [], "49656996": [], "67641246": [], "81278867": [], "70191556": [], "74592626": [], "8077218": [], "65147036": [], "53046435": [], "4930681": [], "14022222": [], "15775435": [], "1836108": [], "7201479": [], "65800077": [], "6510938": [], "15032896": [], "1814712": [], "21988581": [], "7778916": [], "75546986": [], "7598572": [], "21186016": [], "26353785": [], "27647588": [], "08446523": [], "08476864": [], "08901437": [], "08196339": [], "08472775": [], "08441067": [], "08077837": [], "07604235": [], "0858216": [], "08306192": [], "085151": [], "08138938": [], "08749986": [], "09613953": [], "0762987": [], "08360674": [], "08682757": [], "08989233": [], "09236609": [], "09737824": [], "10105534": [], "0898562": [], "0885241": [], "08334178": [], "09034598": [], "09973927": [], "11101985": [], "09523782": [], "09364486": [], "08819515": [], "09199718": [], "10573816": [], "12964188": [], "09642968": [], "09520254": [], "0903199": [], "08478484": [], "08289456": [], "08628263": [], "08290329": [], "08468222": [], "0837247": [], "0836749": [], "07996146": [], "08163566": [], "08346546": [], "08570329": [], "08601631": [], "08311354": [], "0812319": [], "08034338": [], "08419582": [], "08516061": [], "08781648": [], "float32153": [], "151": [], "degreeslong_nam": [], "differential_phase_hvstandard_nam": [], "differential_phase_hvvalid_max": [], "180": [], "152": [], "99687": [], "41705": [], "82037": [], "138": [], "62283": [], "134": [], "75005": [], "132": [], "80003": [], "56323": [], "74901": [], "70963": [], "26495": [], "67094": [], "06926": [], "149": [], "96503": [], "80069": [], "148": [], "49857": [], "131": [], "01672": [], "130": [], "98424": [], "94574": [], "124": [], "80166": [], "122": [], "10038": [], "123": [], "82143": [], "07297": [], "117": [], "75362": [], "116": [], "99466": [], "125": [], "046616": [], "40034": [], "99032": [], "98357": [], "422424": [], "118": [], "5713": [], "127": [], "9992": [], "705246": [], "65259": [], "121": [], "15681": [], "121925": [], "120": 4, "351326": [], "56476": [], "150": [], "05046": [], "147": [], "89175": [], "83852": [], "128": [], "46872": [], "22084": [], "1938": [], "146": [], "85791": [], "19414": [], "129": [], "61566": [], "6219": [], "0772": [], "85391": [], "144": [], "67114": [], "143": [], "6956": [], "61748": [], "126": [], "93355": [], "57653": [], "135": [], "81621": [], "0_fillvalu": [], "3unit": [], "dblong_nam": [], "log_differential_reflectivity_hvstandard_nam": [], "log_differential_reflectivity_hvvalid_max": [], "1852": [], "096": [], "dbzlong_nam": [], "equivalent_reflectivity_factorstandard_nam": [], "equivalent_reflectivity_factorvalid_max": [], "6181538": [], "18523404": [], "09625": [], "17143": [], "791811": [], "072174": [], "2928004": [], "0281978": [], "2770157": [], "813888": [], "088855": [], "878547": [], "7380273": [], "1391516": [], "9497535": [], "822924": [], "986829": [], "17": [], "167383": [], "782002": [], "5906696": [], "15629116": [], "16": 4, "733843": [], "941782": [], "18": [], "172533": [], "9246726": [], "4568431": [], "7411606": [], "376299": [], "562363": [], "280836": [], "1601453": [], "23642026": [], "1511474": [], "920785": [], "010386": [], "422356": [], "6900134": [], "775827": [], "3512673": [], "5292177": [], "495717": [], "350307": [], "977419": [], "2364204": [], "5112202": [], "7548175": [], "5591135": [], "079382": [], "340114": [], "477549": [], "0701802": [], "398108": [], "045215": [], "308364": [], "476562": [], "63492": [], "19": [], "272863": [], "23": [], "02878": [], "612318": [], "775078": [], "007137": [], "006138": [], "4unit": [], "db": 4, "specific_attenuationvalid_min": [], "0valid_max": [], "0standard_nam": [], "specific_attenuationarrai": [], "00713656": [], "00613812": [], "02242632": [], "02349693": [], "02873702": [], "03388032": [], "01652286": [], "00849293": [], "01127714": [], "02873225": [], "03245907": [], "05618556": [], "01058703": [], "03266276": [], "02430738": [], "03704888": [], "05508688": [], "10222074": [], "00052423": [], "00091418": [], "00418776": [], "06597251": [], "06165824": [], "07662798": [], "00043112": [], "00143902": [], "00923953": [], "05432615": [], "06363788": [], "07900681": [], "00089776": [], "00294519": [], "01187203": [], "05676557": [], "06363319": [], "07566997": [], "01633357": [], "00497473": [], "00702228": [], "01456225": [], "02101471": [], "02889667": [], "01388445": [], "00500822": [], "00555213": [], "0180878": [], "02413508": [], "04202515": [], "01538125": [], "00522051": [], "00522422": [], "02329352": [], "03882167": [], "07237991": [], "float3266": [], "88": [], "66": [], "65": [], "56": [], "07_fillvalu": [], "differential_phase_hvvalid_min": [], "differential_phase_hvarrai": [], "87954": [], "31003": [], "55587": [], "41": [], "670944": [], "40": 4, "601467": [], "991886": [], "63": [], "08436": [], "73438": [], "81665": [], "6719": [], "961365": [], "89866": [], "18453": [], "62": [], "537903": [], "39027": [], "926723": [], "873505": [], "39": [], "350143": [], "293705": [], "194057": [], "030823": [], "448269": [], "717411": [], "8826": [], "140263": [], "09647": [], "730923": [], "32": [4, 6], "86312": [], "78612": [], "2457": [], "152058": [], "710316": [], "346203": [], "33": [], "81314": [], "58039": [], "901417": [], "370464": [], "61": [], "144066": [], "864166": [], "92945": [], "31742": [], "182125": [], "59": [], "147583": [], "49178": [], "46842": [], "242016": [], "08926": [], "327286": [], "543495": [], "58": [], "261234": [], "594635": [], "009895": [], "118965": [], "89562": [], "11736": [], "86904": [], "945923": [], "210945": [], "714306": [], "393673": [], "798183": [], "044395": [], "989315": [], "949383": [], "842636": [], "81641": [], "41425": [], "318256": [], "71527": [], "462845": [], "57015": [], "15479": [], "80082": [], "432858": [], "7631": [], "224148": [], "579617": [], "213634": [], "835964": [], "77331": [], "399593": [], "532394": [], "88269": [], "64164": [], "270744": [], "7642": [], "693848": [], "831867": [], "546574": [], "841404": [], "636265": [], "059784": [], "982647": [], "215878": [], "60213": [], "694733": [], "972107": [], "934036": [], "918415": [], "116165": [], "21502": [], "641678": [], "085392": [], "950134": [], "74126": [], "211903": [], "00314": [], "072056": [], "float3211": [], "051": [], "68": [], "equivalent_reflectivity_factorvalid_min": [], "equivalent_reflectivity_factorarrai": [], "351357": [], "05108": [], "682205": [], "7646265": [], "2055435": [], "2172985": [], "24": [], "183601": [], "581492": [], "106165": [], "239631": [], "226877": [], "002514": [], "781192": [], "25": 4, "437313": [], "22699": [], "954491": [], "106161": [], "36722": [], "8619494": [], "9727366": [], "80041": [], "90654": [], "058392": [], "300676": [], "300826": [], "20461442": [], "4699473": [], "583908": [], "735043": [], "401157": [], "4751354": [], "5062387": [], "907118": [], "136932": [], "220625": [], "594551": [], "438027": [], "655041": [], "380459": [], "140993": [], "855519": [], "347261": [], "532992": [], "850717": [], "3036785": [], "097798": [], "540058": [], "06399": [], "868451": [], "892404": [], "546917": [], "365268": [], "018854": [], "412199": [], "132812": [], "322891": [], "97364": [], "631077": [], "295807": [], "493016": [], "7571": [], "242": [], "1unit": [], "mm": 4, "hrlong_nam": [], "rainfall_ratevalid_min": [], "400": [], "rainfall_ratearrai": [], "781163": [], "757117": [], "2415626": [], "4250486": [], "8763523": [], "2506135": [], "6142966": [], "9314943": [], "2883373": [], "8759115": [], "1668527": [], "8652344": [], "0837741": [], "6753967": [], "01788": [], "525053": [], "8211174": [], "9154005": [], "10937975": [], "16075858": [], "52008164": [], "6285896": [], "345267": [], "3759904": [], "09615779": [], "23623344": [], "98115283": [], "8281817": [], "483109": [], "5434413": [], "16352384": [], "43829355": [], "2316028": [], "974742": [], "457212": [], "303609": [], "5839938": [], "66472024": [], "8404307": [], "6318325": [], "192136": [], "8319285": [], "40457": [], "6856669": [], "72962606": [], "9363855": [], "4590728": [], "7730544": [], "5034256": [], "70419997": [], "7141962": [], "3876526": [], "575034": [], "8070908": [], "float3267": [], "05363": [], "8004": [], "15121": [], "66738": [], "615337": [], "033962": [], "08429": [], "72799": [], "58178": [], "68248": [], "995487": [], "911114": [], "175385": [], "40473": [], "953045": [], "882885": [], "352654": [], "38244": [], "300953": [], "070152": [], "305832": [], "978794": [], "045296": [], "26834": [], "141483": [], "57992": [], "512615": [], "309418": [], "00181": [], "20431": [], "64786": [], "74224": [], "56456": [], "531235": [], "307854": [], "22273": [], "99418": [], "87706": [], "770283": [], "292397": [], "157047": [], "808723": [], "4345": [], "484425": [], "19432": [], "06828": [], "09046": [], "93113": [], "26404": [], "624977": [], "986443": [], "026394": [], "790176": [], "6753": [], "8671": [], "5unit": [], "ratiolong_nam": [], "cross_correlation_ratio_hvstandard_nam": [], "cross_correlation_ratio_hvvalid_max": [], "53553617": [], "67531186": [], "8670627": [], "91174066": [], "93050927": [], "9374308": [], "52550304": [], "6097211": [], "804027": [], "93328655": [], "9400089": [], "948859": [], "56922865": [], "6268194": [], "7644688": [], "9405333": [], "95134884": [], "9563892": [], "53971577": [], "676525": [], "72586274": [], "95127517": [], "9473957": [], "95468587": [], "5287703": [], "6440405": [], "73550427": [], "9429988": [], "94958735": [], "9567778": [], "5993457": [], "71276736": [], "8241147": [], "94471395": [], "95013756": [], "9563998": [], "7644525": [], "73417854": [], "73286015": [], "90793645": [], "9219283": [], "92789215": [], "77392995": [], "7474675": [], "7587202": [], "9153635": [], "9201953": [], "92839134": [], "81257594": [], "7904301": [], "795804": [], "92266524": [], "9329199": [], "93867093": [], "37034425": [], "1149": [], "007812": [], "00645_fillvalu": [], "specific_differential_phase_hvvalid_min": [], "specific_differential_phase_hvarrai": [], "76699418e": [], "14852205e": [], "59425887e": [], "19445843e": [], "66558512e": [], "29319500e": [], "28163773e": [], "90479958e": [], "25933722e": [], "76753178e": [], "53909582e": [], "85868724e": [], "55613798e": [], "08757335e": [], "94877738e": [], "52653757e": [], "11782933e": [], "45571323e": [], "80828314e": [], "47437002e": [], "16339443e": [], "57126077e": [], "67256501e": [], "25299171e": [], "44192856e": [], "61898104e": [], "04513106e": [], "94285892e": [], "39868297e": [], "04007402e": [], "58312007e": [], "08432421e": [], "51610228e": [], "33374957e": [], "61860995e": [], "72424924e": [], "51719880e": [], "28741214e": [], "26266617e": [], "77520027e": [], "63642830e": [], "53605631e": [], "40511274e": [], "35171729e": [], "98158109e": [], "77354692e": [], "27539828e": [], "10269925e": [], "61024731e": [], "62921619e": [], "04193974e": [], "64868474e": [], "09701374e": [], "82033682e": [], "10059407e": [], "40665521e": [], "81361747e": [], "00000000e": [], "12772626e": [], "10341162e": [], "81250000e": [], "89429997e": [], "25538994e": [], "25196192e": [], "09163960e": [], "83305725e": [], "77163496e": [], "19654029e": [], "59673661e": [], "05094397e": [], "01037072e": [], "87828600e": [], "42552692e": [], "41317868e": [], "61398783e": [], "02019254e": [], "00450236e": [], "49651762e": [], "26346625e": [], "38148747e": [], "13495137e": [], "53513502e": [], "86638613e": [], "87415323e": [], "18134825e": [], "74410797e": [], "16409937e": [], "92447924e": [], "92458371e": [], "40913581e": [], "08285284e": [], "28112550e": [], "64294159e": [], "98186424e": [], "31758182e": [], "45023165e": [], "float32765": [], "756": [], "481e": [], "491e": [], "03standard_nam": [], "radius_of_influencelong_nam": [], "influenc": [], "mappingunit": [], "mleast_significant_digit": [], "1_fillvalu": [], "6497": [], "33453": [], "747": [], "1426": [], "1425": [], "746": [], "8991": [], "737": [], "58545": [], "728": [], "14844": [], "1484": [], "791": [], "5426": [], "782": [], "22736": [], "773": [], "03546": [], "0354": [], "772": [], "792": [], "763": [], "47833": [], "4783": [], "754": [], "0413": [], "1446": [], "2496": [], "1436": [], "6926": [], "1427": [], "2556": [], "2555": [], "1455": [], "4417": [], "0062": [], "1464": 4, "7568": [], "2498": [], "1490": [], "1481": [], "3345": [], "1472": [], "1471": [], "899": [], "1462": [], "5854": [], "1453": [], "1483": [], "timepandasindexpandasindex": [], "cftimeindex": [], "x27": [], "length": [], "calendar": [], "standard": 4, "freq": [], "none": 4, "zpandasindexpandasindex": [], "8571428571429": [], "7142857142858": [], "5714285714284": [], "4285714285716": [], "2857142857147": [], "1428571428573": [], "857142857143": [], "714285714286": [], "571428571429": [], "428571428572": [], "285714285715": [], "142857142858": [], "57142857143": [], "285714285716": [], "142857142859": [], "name": [2, 3, 4], "ypandasindexpandasindex": [], "67088607595": [], "3417721519": [], "012658227846": [], "683544303796": [], "354430379746": [], "025316455696": [], "696202531646": [], "367088607594": [], "037974683544": [], "708860759492": [], "379746835442": [], "050632911392": [], "721518987342": [], "39240506329": [], "06329113924": [], "734177215189": [], "405063291139": [], "075949367088": [], "746835443037": [], "417721518987": [], "088607594937": [], "759493670885": [], "430379746835": [], "101265822785": [], "772151898733": [], "443037974683": [], "113924050633": [], "784810126581": [], "455696202531": [], "126582278481": [], "797468354429": [], "468354430379": [], "139240506327": [], "810126582277": [], "481012658227": [], "151898734177": [], "822784810127": [], "4936708860732": [], "1645569620232": [], "16455696202684": [], "4936708860769": [], "4810126582306": [], "8101265822806": [], "1392405063307": [], "4683544303807": [], "797468354431": [], "455696202534": [], "7848101265845": [], "1139240506345": [], "443037974685": [], "772151898735": [], "430379746838": [], "759493670888": [], "088607594938": [], "417721518988": [], "746835443038": [], "405063291142": [], "734177215192": [], "063291139242": [], "392405063292": [], "721518987346": [], "379746835446": [], "037974683546": [], "3670886076": [], "0253164557": [], "6835443038": [], "012658227854": [], "670886075954": [], "xpandasindexpandasindex": [], "attribut": [], "liner": 3, "isel": 3, "And": 3, "given": 3, "sel": 3, "1300": 3, "nearest": 3, "mean": 3, "matter": 3, "routin": 4, "np": 4, "pyart": 4, "config": [4, 5], "load_config": 4, "mch_config": 4, "": [4, 6], "filenotfounderror": [], "traceback": [2, 3, 4], "recent": [2, 3, 4], "call": [2, 3, 4], "last": [2, 3, 4], "line": [2, 3, 4], "pyrad": [], "src": [], "filenam": [], "79": [], "try": 4, "importlib": [], "machineri": [], "sourcefileload": [], "cfile": [], "metadata_config": [], "load_modul": [], "importerror": [], "83": 4, "imp": [], "frozen": [], "_bootstrap_extern": [], "548": [], "_check_name_wrapp": [], "self": [], "arg": [], "kwarg": [], "1063": [], "fullnam": [], "888": [], "_bootstrap": [], "287": [], "_load_module_shim": [], "619": [], "_exec": [], "spec": [], "879": [], "exec_modul": [], "1016": [], "get_cod": [], "1073": [], "get_data": [], "path": 4, "errno": [], "No": [2, 3, 4], "own": 4, "configur": [4, 6], "field": 4, "much": 4, "startup": 4, "correspond": 4, "third": 4, "oper": [4, 6], "ppi": [4, 6], "raw": [4, 6], "pre": 4, "temperatur": 4, "obtain": 4, "cosmo": 4, "nwp": 4, "object": 4, "wa": 4, "previous": 4, "freez": 4, "quit": 4, "high": 4, "4200": 4, "file_radar": 4, "exercice1_swiss_thunderstorm": 4, "mhl2217907250u": 4, "003": 4, "read_cfradi": 4, "temp": 4, "20220628073500_savevol_cosmo_lookup_temp": 4, "add_field": 4, "gatefilt": 4, "kind": 4, "filter": [4, 6], "problemat": 4, "pixel": 4, "were": 4, "textur": 4, "strong": 4, "thunderstorm": 4, "extend": 4, "snr": 4, "ratio": 4, "less": 4, "than": 4, "gtfilter": 4, "moment_and_texture_based_gate_filt": 4, "exclude_below": 4, "signal_to_noise_ratio": 4, "subplot": 4, "sharex": 4, "sharei": 4, "colorbar_label": 4, "set_xlim": 4, "50": 4, "set_ylim": 4, "set_aspect": 4, "equal": 4, "box": 4, "clear": 4, "mostli": 4, "expect": 4, "behind": 4, "so": 4, "idea": 4, "knowledg": 4, "veri": 4, "insight": 4, "calculate_attenuation_zphi": 4, "fzl": 4, "phidp_field": 4, "uncorrected_differential_phas": 4, "temp_field": 4, "temp_ref": 4, "spec_at": 4, "pia": [4, 6], "cor_z": 4, "spec_diff_at": 4, "pida": [4, 6], "cor_zdr": 4, "corrected_reflect": 4, "corrected_differential_reflect": 4, "phi": 4, "relat": 4, "differenti": 4, "howev": 4, "onli": 4, "liquid": 4, "fix": 4, "height": [4, 6], "later": 4, "integr": 4, "zdr": [4, 6], "zh": [4, 6], "clearli": 4, "observ": 4, "signific": 4, "indic": 4, "presenc": 4, "oblat": 4, "drop": 4, "algorithm": [4, 6], "directli": 4, "numer": 4, "phidp": [4, 6], "three": 4, "maesaka": [4, 6], "et": [4, 6], "al": [4, 6], "2012": 4, "fast": 4, "robust": 4, "assum": 4, "posit": 4, "therefor": 4, "rainfal": [4, 6], "melt": 4, "layer": 4, "warm": 4, "_": 4, "kdp_maesaka": 4, "psidp_field": 4, "specific_differential_phas": 4, "fromnumer": 4, "784": 4, "userwarn": 4, "partit": 4, "kth": 4, "axi": 4, "A": [4, 6], "cluster": 4, "center": 4, "besic": [4, 6], "rhohv": [4, 6], "classifi": 4, "ic": 4, "hail": 4, "densiti": 4, "graupel": 4, "wet": 4, "snow": 4, "orient": 4, "rain": 4, "rime": 4, "particl": 4, "light": 4, "crystal": 4, "aggreg": 4, "centroid": 4, "polarimetr": 4, "suit": 4, "mont": 4, "lema": 4, "left": 4, "empti": 4, "frequenc": 4, "band": [4, 6], "c": [4, 6], "8231": 4, "2514": 4, "0644": 4, "9861": 4, "1380": 4, "0239": 4, "1971": 4, "9661": 4, "9447": 4, "1142": 4, "9787": 4, "974": 4, "34": 4, "2450": 4, "5540": 4, "1459": 4, "9937": 4, "945": 4, "9432": 4, "0110": 4, "5141": 4, "9928": 4, "993": 4, "5202": 4, "3498": 4, "9746": 4, "843": 4, "5287": 4, "9751": 4, "2640": 4, "9804": 4, "55": 4, "52": 4, "6547": 4, "7054": 4, "5101": 4, "9765": 4, "1114": 4, "46": 4, "4998": 4, "1978": 4, "6431": 4, "9845": 4, "1010": 4, "hydro": 4, "hydroclass_semisupervis": 4, "mass_cent": 4, "refl_field": 4, "zdr_field": 4, "kdp_field": 4, "rhv_field": 4, "uncorrected_cross_correlation_ratio": 4, "radar_echo_classif": 4, "mpl": 4, "label": 4, "ag": 4, "lr": 4, "rp": 4, "rn": 4, "vi": 4, "w": [4, 6], "mh": 4, "ih": 4, "hdg": 4, "tick": 4, "arang": 4, "len": 4, "boundari": 4, "norm": 4, "color": 4, "boundarynorm": 4, "256": 4, "cax": 4, "ticklab": 4, "command": 4, "slightli": 4, "complic": 4, "due": 4, "categor": 4, "reveal": 4, "surround": 4, "isol": 4, "unfilt": 4, "inde": 4, "intens": 4, "dai": 4, "sever": [4, 6], "refin": 4, "reli": 4, "est_rain_rate_hydro": 4, "hydro_field": 4, "a_field": 4, "thresh": 4, "radar_estimated_rain_r": 4, "land": 4, "border": 4, "radarmapdisplai": 4, "lon_bnd": 4, "lat_bnd": 4, "titl": 4, "h": 4, "min_lon": 4, "max_lon": 4, "mask_outsid": 4, "min_lat": 4, "max_lat": 4, "lon_lin": 4, "10m": 4, "lat_lin": 4, "lat_0": 4, "lon_0": 4, "embellish": 4, "states_provinc": 4, "naturalearthfeatur": 4, "categori": 4, "cultur": 4, "admin_0_countri": 4, "scale": 4, "facecolor": 4, "lake": 4, "physic": 4, "blue": 4, "river": 4, "add_featur": 4, "edgecolor": 4, "grai": 4, "alpha": 4, "didn": 4, "aloft": 4, "extrem": 4, "too": 4, "becaus": 4, "uncertain": 4, "close": 4, "descript": 5, "cours": 5, "doe": 6, "jma": 6, "seri": 6, "pseudorhi": 6, "bscope": 6, "histogram": 6, "main_process_data": 6, "cfgpath": 6, "starttim": 6, "20230801000000": 6, "endtim": 6, "20230802000000": 6, "jma_plot_vol": 6, "txt": 6, "convert": 6, "surfac": 6, "slice": 6, "cross": 6, "section": 6, "jma_grid": 6, "meteofr": 6, "20210114101500": 6, "20210114120000": 6, "mf_pam_mtcy_filt": 6, "grib": 6, "iso0": 6, "vulpiani": 6, "variat": 6, "kalman": 6, "least": 6, "squar": 6, "zphi": 6, "philinear": 6, "mf_pam_mtcy_kdp": 6, "classif": 6, "With": 6, "semi": 6, "supervis": 6, "20200516200500": 6, "20200516220000": 6, "mf_odim_coll_hydro": 6, "ml": 6, "giangrand": 6, "vpr": 6, "relev": 6, "product": 6, "timeseri": 6, "overlaid": 6, "altitud": 6, "appar": 6, "theoret": 6, "mf_odim_coll_ml": 6, "r": 6, "relationship": 6, "ah": 6, "everi": 6, "accumul": 6, "over": 6, "hour": 6, "mf_odim_coll_rr": 6, "vad": 6, "save": 6, "csv": 6, "wind": 6, "v": 6, "compon": 6, "speed": 6, "mf_pag_mtcy_doppl": 6, "dealias": 6, "wrapper": 6, "sound": 6, "wmo": 6, "06610": 6, "initi": 6, "condit": 6, "2d": 6, "arrow": 6, "1000": 6, "2000": 6, "3000": 6, "l": 6, "runwai": 6, "rw32": 6, "zurich": 6, "airport": 6, "20231127174000": 6, "20231127175000": 6, "dda": 6, "qvp": 6, "origin": 6, "ryzhkov": 6, "tobin": 6, "kumjian": 6, "2017": 6, "enhanc": 6, "bukov\u010di\u0107": 6, "slant": 6, "mf_odim_coll_qvp": 6, "swiss": 6, "topographi": 6, "geotiff": 6, "static": 6, "power": 6, "mobil": 6, "visibility_norad": 6, "g": 6, "slope": 6, "aspect": 6, "min": 6, "main_process_gecsx": 6, "20231127170000": 6, "20231127180000": 6, "modulenotfounderror": [2, 3, 4]}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"wmo": 0, "asean": 0, "radar": [0, 2, 6], "workshop": 0, "pyrad": [0, 5, 6], "cours": 0, "motiv": 0, "author": 0, "webpag": 0, "run": 0, "notebook": 0, "binder": 0, "your": 0, "own": 0, "machin": 0, "py": [1, 2, 3, 4], "art": [1, 2, 3, 4], "tutori": [1, 5], "basic": [1, 2], "grid": [1, 3, 6], "overview": [2, 3, 4], "prerequisit": [2, 3], "import": [2, 3], "an": [2, 3], "histori": 2, "what": [2, 3], "can": 2, "pyart": [2, 3], "do": 2, "read": [2, 3, 4], "data": [2, 3, 4], "us": [2, 3], "io": 2, "investig": 2, "object": [2, 3], "extract": 2, "sampl": 2, "field": 2, "plot": [2, 3, 6], "our": [2, 3], "util": 2, "radarmapdisplai": 2, "summari": [2, 3], "": [2, 3], "next": [2, 3], "resourc": [2, 3, 4], "refer": [2, 3, 4], "i": 3, "why": 3, "antenna": 3, "v": 3, "cartesian": [3, 6], "coordin": 3, "visual": 3, "test": 3, "dataset": 3, "setup": 3, "routin": 3, "map": 3, "grid_from_radar": 3, "configur": 3, "up": 3, "horizont": 3, "view": 3, "latitudin": 3, "slice": 3, "xarrai": 3, "process": 4, "ground": [4, 6], "clutter": [4, 6], "nois": 4, "remov": [4, 6], "attenu": 4, "correct": 4, "kdp": [4, 6], "estim": [4, 6], "hydrometeor": [4, 6], "classif": 4, "qpe": 4, "descript": 6, "config": 6, "file": 6, "0": 6, "volum": 6, "scan": 6, "pyrad_config": 6, "00_plot_vol": 6, "1": 6, "creat": 6, "01_grid": 6, "2": 6, "02_clutter_filt": 6, "3": 6, "comput": 6, "03_phidp_kdp": 6, "4": 6, "classifii": 6, "04_hydroclass": 6, "5": 6, "melt": 6, "layer": 6, "detect": 6, "05_ml": 6, "6": 6, "quantit": 6, "precipit": 6, "06_rr": 6, "7": 6, "veloc": 6, "azimuth": 6, "displai": 6, "07_vad": 6, "8": 6, "dual": 6, "doppler": 6, "08_dda": 6, "9": 6, "quasi": 6, "vertic": 6, "profil": 6, "09_qvp": 6, "10": 6, "visibl": 6, "from": 6, "dem": 6, "gecsx": 6, "tool": 6, "10_visibl": 6}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"WMO/ASEAN radar workshop - Pyrad course": [[0, "wmo-asean-radar-workshop-pyrad-course"]], "Motivation": [[0, "motivation"]], "Authors": [[0, "authors"]], "Webpage": [[0, "webpage"]], "Running the Notebooks": [[0, "running-the-notebooks"]], "Running on Binder": [[0, "running-on-binder"]], "Running on Your Own Machine": [[0, "running-on-your-own-machine"]], "Py-ART Tutorial": [[1, "py-art-tutorial"]], "Py-ART Basics and Gridding": [[1, "py-art-basics-and-gridding"]], "Py-ART Basics": [[2, "py-art-basics"]], "Overview": [[2, "overview"], [3, "overview"], [4, "overview"]], "Prerequisites": [[2, "prerequisites"], [3, "prerequisites"]], "Imports": [[2, "imports"], [3, "imports"]], "An Overview of Py-ART": [[2, "an-overview-of-py-art"]], "History of the Py-ART": [[2, "history-of-the-py-art"]], "What can PyART Do?": [[2, "what-can-pyart-do"]], "Reading in Data Using Py-ART": [[2, "reading-in-data-using-py-art"]], "Reading data in using pyart.io.read": [[2, "reading-data-in-using-pyart-io-read"]], "Investigate the pyart.Radar object": [[2, "investigate-the-pyart-radar-object"]], "Extract a sample data field": [[2, "extract-a-sample-data-field"]], "Plotting our Radar Data": [[2, "plotting-our-radar-data"]], "An Overview of Py-ART Plotting Utilities": [[2, "an-overview-of-py-art-plotting-utilities"]], "Use the RadarMapDisplay with our data": [[2, "use-the-radarmapdisplay-with-our-data"]], "Summary": [[2, "summary"], [3, "summary"]], "What\u2019s Next": [[2, "what-s-next"], [3, "what-s-next"]], "Resources and References": [[2, "resources-and-references"], [3, "resources-and-references"], [4, "resources-and-references"]], "Py-ART Gridding": [[3, "py-art-gridding"]], "What is gridding and why is it important?": [[3, "what-is-gridding-and-why-is-it-important"]], "Antenna vs. Cartesian Coordinates": [[3, "antenna-vs-cartesian-coordinates"]], "Why is Gridding Important?": [[3, "why-is-gridding-important"]], "An overview of gridding with Py-ART": [[3, "an-overview-of-gridding-with-py-art"]], "Read in and Visualize a Test Dataset": [[3, "read-in-and-visualize-a-test-dataset"]], "Setup our Gridding Routine with pyart.map.grid_from_radars()": [[3, "setup-our-gridding-routine-with-pyart-map-grid-from-radars"]], "Use our configuration to grid the data!": [[3, "use-our-configuration-to-grid-the-data"]], "Plot up the Grid Object": [[3, "plot-up-the-grid-object"]], "Plot a horizontal view of the data": [[3, "plot-a-horizontal-view-of-the-data"]], "Plot a Latitudinal Slice": [[3, "plot-a-latitudinal-slice"]], "Plot with Xarray": [[3, "plot-with-xarray"]], "Py-ART Processing": [[4, "py-art-processing"]], "Reading the data": [[4, "reading-the-data"]], "Ground-clutter and noise removal": [[4, "ground-clutter-and-noise-removal"]], "Attenuation correction": [[4, "attenuation-correction"]], "KDP estimation": [[4, "kdp-estimation"]], "Hydrometeor classification": [[4, "hydrometeor-classification"]], "QPE": [[4, "qpe"]], "pyrad Tutorial": [[5, "pyrad-tutorial"]], "Description of pyrad config files": [[6, "description-of-pyrad-config-files"]], "0 : Plot a volume scan (pyrad_config/00_plot_vol)": [[6, "plot-a-volume-scan-pyrad-config-00-plot-vol"]], "1 : Create a Cartesian grid and plot it (pyrad_config/01_grid)": [[6, "create-a-cartesian-grid-and-plot-it-pyrad-config-01-grid"]], "2 : Ground-clutter removal (pyrad_config/02_clutter_filter)": [[6, "ground-clutter-removal-pyrad-config-02-clutter-filter"]], "3 : Compute KDP (pyrad_config/03_phidp_kdp)": [[6, "compute-kdp-pyrad-config-03-phidp-kdp"]], "4 : Classifiy hydrometeors (pyrad_config/04_hydroclass)": [[6, "classifiy-hydrometeors-pyrad-config-04-hydroclass"]], "5 : Melting layer detection (pyrad_config/05_ml)": [[6, "melting-layer-detection-pyrad-config-05-ml"]], "6 : Quantitative precipitation estimation (pyrad_config/06_rr)": [[6, "quantitative-precipitation-estimation-pyrad-config-06-rr"]], "7 : Compute velocity azimuth display (pyrad_config/07_VAD)": [[6, "compute-velocity-azimuth-display-pyrad-config-07-vad"]], "8 : Compute dual-Doppler estimation (pyrad_config/08_DDA)": [[6, "compute-dual-doppler-estimation-pyrad-config-08-dda"]], "9 : Quasi-vertical profiles (pyrad_config/09_QVP)": [[6, "quasi-vertical-profiles-pyrad-config-09-qvp"]], "10 : Radar visibility from a DEM with the GECSX tool (pyrad_config/10_visibility/)": [[6, "radar-visibility-from-a-dem-with-the-gecsx-tool-pyrad-config-10-visibility"]]}, "indexentries": {}})
\ No newline at end of file
+Search.setIndex({"docnames": ["README", "notebooks/pyart/README", "notebooks/pyart/pyart-basics", "notebooks/pyart/pyart-gridding", "notebooks/pyart/pyart-processing", "notebooks/pyrad/README", "notebooks/pyrad/description-config"], "filenames": ["README.md", "notebooks/pyart/README.md", "notebooks/pyart/pyart-basics.ipynb", "notebooks/pyart/pyart-gridding.ipynb", "notebooks/pyart/pyart-processing.ipynb", "notebooks/pyrad/README.md", "notebooks/pyrad/description-config.ipynb"], "titles": ["WMO/ASEAN radar workshop - Pyrad course", "Py-ART Tutorial", "Py-ART Basics", "Py-ART Gridding", "Py-ART Processing", "pyrad Tutorial", "Description of pyrad config files"], "terms": {"thi": [0, 1, 2, 3, 4, 5, 6], "content": [0, 1, 2, 5], "us": [0, 4, 6], "short": 0, "held": 0, "weather": [0, 2, 3, 4], "2024": 0, "jordi": 0, "figuera": 0, "i": [0, 1, 2, 4, 5], "ventura": 0, "daniel": 0, "wolfensberg": 0, "http": [0, 2], "openradarsci": 0, "org": 0, "asean2024": 0, "you": [0, 1, 2, 3, 4], "can": [0, 3, 4], "either": [0, 4, 6], "local": 0, "The": [0, 1, 2, 3, 4], "simplest": 0, "wai": 0, "interact": 0, "jupyt": [0, 2], "through": [0, 2, 3], "which": [0, 2, 3, 4], "enabl": 0, "execut": 0, "book": 0, "cloud": [0, 2, 4], "detail": 0, "how": [0, 1, 3, 6], "work": [0, 2, 3, 4], "ar": [0, 1, 2, 3, 4], "import": [0, 4], "now": [0, 2, 3, 4], "all": [0, 2, 4], "need": [0, 2, 3, 4], "know": [0, 1, 3], "launch": 0, "pythia": 0, "cookbook": 0, "chapter": 0, "via": 0, "simpli": [0, 2], "navig": 0, "mous": 0, "top": 0, "right": [0, 3, 4], "corner": 0, "view": [0, 2], "click": 0, "rocket": 0, "ship": 0, "icon": 0, "see": [0, 2], "figur": [0, 2, 3, 4], "below": [0, 4], "sure": 0, "select": [0, 2], "after": [0, 2, 4], "moment": [0, 2, 4, 6], "should": [0, 2, 3], "present": [0, 2], "e": [0, 6], "ll": 0, "abl": 0, "even": [0, 2, 4], "chang": [0, 2], "exampl": [0, 2, 3, 4], "program": [0, 2, 6], "code": [0, 4], "cell": [0, 3, 4], "have": [0, 2, 3, 4], "output": [0, 4], "first": [0, 2, 3], "until": 0, "them": 0, "press": 0, "shift": [0, 4], "enter": 0, "complet": 0, "live": 0, "describ": 0, "get": [0, 2], "start": [0, 1, 2, 3, 4], "In": [0, 2, 3, 4], "order": [0, 3, 4], "materi": 0, "instal": 0, "conda": [0, 4], "its": [0, 2], "fulli": 0, "open": [0, 2, 3, 4], "sourc": [0, 2, 3, 4], "altern": 0, "miniforg": 0, "If": [0, 1, 2, 3, 4], "interest": [0, 4], "comput": [0, 3], "follow": [0, 2, 6], "workflow": 0, "clone": 0, "github": [0, 2, 3, 4], "com": 0, "openradar": 0, "repositori": 0, "git": 0, "move": [0, 1, 6], "directori": [0, 4], "cd": [0, 6], "creat": [0, 2, 4], "activ": 0, "environ": [0, 4], "from": [0, 2, 3, 4], "yml": 0, "file": [0, 2, 3, 4, 5], "env": [0, 4], "f": 0, "sinc": [0, 2, 3, 4], "pydda": [0, 6], "arm_pyart": 0, "we": [0, 2, 3, 4], "remov": 0, "our": [0, 4], "meteoswiss": [0, 2, 3, 4, 6], "fork": 0, "uninstal": 0, "final": 0, "defin": [0, 4, 6], "some": [0, 1, 4], "variabl": [0, 2, 3, 4], "requir": [0, 1, 4], "cwd": 0, "dirnam": 0, "1": [0, 2, 3, 4], "pwd": 0, "p": 0, "basenam": 0, "export": 0, "pyart_config": [0, 4], "pyrad_config": [0, 4], "mf_config": 0, "py": [0, 6], "metranetlib_path": 0, "lib": [0, 4], "brief": 1, "overview": 1, "main": 1, "function": [1, 2, 3, 4], "foundat": 1, "includ": [1, 2, 3, 5], "an": [1, 4, 6], "packag": [1, 4], "read": [1, 6], "data": [1, 6], "plot": [1, 4], "util": [1, 4], "tool": 1, "process": [1, 2, 3], "perform": [1, 2, 6], "common": [1, 2], "radar": [1, 3, 4], "new": [1, 2, 3], "good": [1, 4], "place": 1, "befor": [1, 3, 4], "onto": [1, 2], "within": [2, 3, 4], "notebook": [2, 3, 4], "cover": [2, 3, 4], "gener": [2, 6], "concept": [2, 3], "note": [2, 3, 4], "intro": [2, 3], "cartopi": [2, 3, 4], "help": [2, 3], "featur": [2, 3, 4], "matplotlib": [2, 3, 4], "numpi": [2, 3, 4], "arrai": [2, 3, 4], "time": [2, 3], "learn": [2, 3], "45": [2, 3, 4], "minut": [2, 3], "o": [2, 3], "warn": [2, 3, 4], "cr": [2, 3, 4], "ccr": [2, 3, 4], "pyplot": [2, 3, 4], "plt": [2, 3, 4], "test": 2, "get_test_data": [2, 3], "filterwarn": [2, 3], "ignor": [2, 3, 4], "store": [2, 3, 4], "msrad": 4, "anaconda3": 4, "wolfensb": 4, "rainforest_test": 4, "python3": 4, "10": [2, 3, 4], "site": 4, "tqdm": [], "auto": [], "21": 3, "tqdmwarn": [], "iprogress": [], "found": 2, "pleas": [2, 3, 4], "updat": [], "ipywidget": [], "readthedoc": [], "en": [], "stabl": [], "user_instal": [], "html": [], "autonotebook": [], "notebook_tqdm": [], "python": [2, 3, 4], "arm": [2, 3, 4], "toolkit": [2, 3, 4], "librari": [2, 3, 4], "partli": [2, 3, 4], "support": [2, 3, 4], "u": [2, 3, 4, 6], "depart": [2, 3, 4], "energi": [2, 3, 4], "part": [2, 3, 4], "atmospher": [2, 3, 4], "radiat": [2, 3, 4], "measur": [2, 3, 4], "climat": [2, 3, 4], "research": [2, 3, 4], "facil": [2, 3, 4], "offic": [2, 3, 4], "scienc": [2, 3, 4], "user": [2, 3, 4, 6], "softwar": [2, 3, 4], "prepar": [2, 3, 4], "public": [2, 3, 4], "cite": [2, 3, 4], "jj": [2, 3, 4], "helmu": [2, 3, 4], "sm": [2, 3, 4], "colli": [2, 3, 4], "jor": [2, 3, 4], "2016": [2, 3, 4, 6], "doi": [2, 3, 4], "5334": [2, 3, 4], "119": [2, 3, 4], "develop": 2, "began": 2, "address": 2, "acquisit": 2, "number": [2, 3], "scan": [2, 3, 4], "precipit": [2, 4], "american": 2, "recoveri": 2, "act": 2, "project": [2, 3], "ha": [2, 3], "expand": 2, "varieti": [2, 3], "wider": 2, "base": [2, 4], "model": [2, 3, 4], "been": [2, 4], "releas": 2, "under": 2, "bsd": 2, "licens": 2, "run": [2, 6], "linux": 2, "x": [2, 3, 4, 6], "It": [2, 4], "also": [2, 3, 4], "window": 2, "more": [2, 4], "limit": [2, 3, 4], "task": 2, "complex": 2, "pipelin": 2, "specif": [2, 3, 4, 6], "format": [2, 3, 6], "visual": [2, 4], "correct": [2, 6], "while": [2, 3], "antenna": 2, "coordin": [2, 6], "doppler": 2, "unfold": 2, "de": 2, "alias": 2, "attenu": [2, 6], "phase": [2, 4], "linear": [2, 6], "method": [2, 3, 4, 6], "map": [2, 4, 6], "one": [2, 3, 4, 6], "multipl": [2, 3], "cartesian": 2, "grid": [2, 4], "retriev": [2, 4], "write": 2, "radial": 2, "netcdf": 2, "when": 2, "modul": [2, 4], "differ": [2, 3, 4, 6], "cf": 2, "lassen": 2, "document": [2, 3], "here": [2, 4], "For": [2, 3], "most": [2, 4], "list": 2, "page": 2, "suffic": 2, "abil": 2, "automat": 2, "detect": [2, 4], "let": [2, 3, 4], "check": 2, "out": [2, 4], "argument": 2, "take": [2, 3, 4], "cfradial": [2, 4], "swx_20120520_0641": [2, 3], "nc": [2, 3, 4], "core": [2, 3, 4], "0x2addeca9b640": [], "actual": [2, 6], "where": 2, "reflect": [2, 3, 4, 6], "veloc": 2, "To": 2, "add": [2, 4], "kei": 2, "addit": 2, "dict_kei": 2, "corrected_reflectivity_horizont": [2, 3], "reflectivity_horizont": [2, 3], "recalculated_diff_phas": [2, 3], "specific_attenu": [2, 3, 4], "unf_dp_phase_shift": [2, 3], "mean_doppler_veloc": [2, 3], "diff_phas": [2, 3], "rain_rate_a": [2, 3], "norm_coherent_pow": [2, 3], "dp_phase_shift": [2, 3], "diff_reflect": [2, 3], "proc_dp_phase_shift": [2, 3], "copol_coeff": [2, 3], "dictionari": 2, "each": [2, 3], "contain": [2, 4], "unit": 2, "access": 2, "just": 2, "ad": 2, "individu": 2, "string": 2, "bracket": 2, "look": [2, 3, 4], "print": [2, 3], "_fillvalu": 2, "9999": [2, 3], "0": [2, 3, 4], "least_significant_digit": 2, "2": [2, 3, 4], "dbz": [2, 4], "long_nam": 2, "equivalent_reflectivity_factor": 2, "valid_min": 2, "valid_max": 2, "80": [2, 3, 4], "standard_nam": 2, "masked_arrai": 2, "5": [2, 3, 4], "671875": 2, "28125": 2, "8": [2, 3, 4], "1171875": 2, "13": [2, 3, 4], "4765625": 2, "6171875": 2, "8984375": 2, "0703125": 2, "6796875": 2, "5390625": 2, "0390625": 2, "625": 2, "11": [2, 3], "484375": 2, "984375": 2, "9375": 2, "46875": 2, "12": [2, 3], "3203125": 2, "9609375": 2, "53125": 2, "84375": 2, "7890625": 2, "9140625": 2, "09375": 2, "mask": [2, 4], "fals": [2, 3], "true": [2, 4], "fill_valu": 2, "dtype": [2, 3], "float32": [2, 3], "go": 2, "further": 2, "end": 2, "type": [2, 4], "class": [2, 4, 6], "ma": 2, "maskedarrai": [2, 4], "size": 2, "shape": [2, 3], "8800": 2, "667": 2, "two": [2, 6], "dimension": 2, "dimens": [2, 3], "gate": [2, 4], "awai": 2, "rai": 2, "direct": [2, 3, 6], "around": [2, 4], "nrai": 2, "ngate": 2, "want": 2, "300th": 2, "second": 2, "would": [2, 3], "someth": 2, "like": [2, 4], "300": 2, "4": [2, 3, 4], "8046875": 2, "load": [2, 4, 6], "inspect": 2, "logic": 2, "thing": 2, "done": 2, "graph": [2, 3, 4], "primari": 2, "radardisplai": [2, 3, 4], "airborneradardisplai": 2, "gridmapdisplai": [2, 3], "deal": 2, "geograph": 2, "fig": [2, 3, 4], "figsiz": [2, 3, 4], "1000x1000": 2, "ax": [2, 4], "onc": [2, 3], "displai": [2, 3, 4], "without": 2, "specifi": [2, 6], "won": 2, "t": [2, 4], "anyth": 2, "plot_ppi_map": [2, 4], "By": [2, 6], "default": [2, 3, 4], "elev": [2, 3, 4, 6], "colormap": [2, 4], "custom": 2, "arguement": 2, "sweep": [2, 4], "3": [2, 3, 4], "fourth": 2, "index": [2, 3], "vmin": [2, 3, 4], "20": [2, 3], "minimum": 2, "valu": 2, "colorbar": 2, "vmax": [2, 3, 4], "60": [2, 3, 4], "maximum": 2, "platecarre": 2, "latitud": [2, 3, 4, 6], "longitud": [2, 3, 4, 6], "system": [2, 3], "cmap": [2, 3], "pyart_homeyerrainbow": [2, 3], "provid": [2, 4], "show": [2, 4], "mani": 2, "paramet": [2, 6], "As": [2, 3], "recal": 2, "earlier": 2, "pyart_carbone42": 2, "Or": 2, "correl": 2, "coeffici": 2, "corr_coeff": 2, "few": [2, 3, 4], "walk": [2, 3], "appli": [2, 3], "clean": [2, 3], "advanc": [2, 3], "essenti": [2, 3, 4], "link": [2, 3, 4], "doc": [2, 3, 4], "issu": [2, 3, 4], "tracker": [2, 3, 4], "choos": 3, "same": 3, "basic": 3, "io": [3, 4], "polar": [3, 4, 6], "angl": [3, 6], "rang": [3, 6], "360": 3, "degre": 3, "north": [3, 4], "radiu": 3, "between": [3, 4, 6], "ground": 3, "challeng": 3, "make": [3, 6], "compar": [3, 4], "lat": 3, "lon": 3, "transform": 3, "daa": 3, "coordiant": 3, "fortun": 3, "your": [3, 4], "easili": 3, "dice": 3, "other": [3, 6], "combin": 3, "ex": 3, "There": [3, 4], "decis": 3, "made": 3, "dure": 3, "larg": [3, 4], "impact": 3, "regrid": 3, "resolut": [3, 4], "my": 3, "interpol": [3, 4], "smooth": [3, 6], "alwai": 3, "wrong": 3, "answer": 3, "understand": 3, "option": 3, "avail": 3, "experi": 3, "best": 3, "case": 3, "dig": 3, "previou": 3, "northern": 3, "oklahoma": 3, "quick": 3, "lowest": 3, "closest": 3, "plot_ppi": [3, 4], "mention": 3, "current": 3, "distanc": 3, "characterist": 3, "similar": 3, "except": [3, 4], "instead": 3, "about": 3, "desir": 3, "extent": [3, 6], "might": 3, "imagin": 3, "km": [3, 4], "south": 3, "y": 3, "west": [3, 4], "east": [3, 4], "15": 3, "z": [3, 4, 6], "vertic": [3, 4], "500": 3, "m": [3, 4, 6], "spatial": [3, 4], "input": [3, 4], "set": 3, "meter": 3, "z_grid_limit": 3, "15_000": 3, "y_grid_limit": 3, "20_000": 3, "x_grid_limit": 3, "again": 3, "grid_resolut": 3, "point": [3, 4, 6], "def": 3, "compute_number_of_point": 3, "return": 3, "int": 3, "helper": 3, "z_grid_point": 3, "29": 3, "well": [3, 4], "x_grid_point": 3, "y_grid_point": 3, "grid_shap": 3, "grid_limit": 3, "0x2b17bfaf8550": [], "along": [3, 6], "singl": 3, "level": [3, 4], "plot_grid": 3, "plot_latitude_slic": 3, "36": 3, "xlim": 3, "anoth": [3, 4], "neat": 3, "d": 3, "to_xarrai": 3, "lt": 3, "gt": 3, "2011": 3, "05": 3, "06": 3, "42": 3, "float64": 3, "018e": 3, "03": 3, "5e": 3, "04": 3, "31": 3, "67": 3, "97": 3, "82": [3, 4], "81": [3, 4], "37": 3, "2e": 3, "949e": 3, "14": 3, "3938": 3, "nan": 3, "43": 3, "22": [], "2725": 3, "153": 3, "618": 3, "35": 3, "7812": 3, "07": 3, "5355": 3, "3767": 3, "roi": 3, "765": 3, "6": [3, 4], "49": 3, "datasetdimens": 3, "1z": 3, "29y": 3, "80x": 3, "80coordin": 3, "object2011": 3, "11arrai": 3, "cftime": 3, "datetimegregorian": 3, "has_year_zero": 3, "float64500": 3, "04standard_nam": 3, "projection_z_coordinatelong_nam": 3, "plane": 3, "originaxi": 3, "zunit": 3, "mposit": 3, "uparrai": 3, "1017": 3, "857143": 3, "1535": 3, "714286": 3, "2053": 3, "571429": 3, "2571": 3, "428571": 3, "3089": 3, "285714": 3, "3607": 3, "142857": 3, "4125": 3, "4642": 3, "5160": 3, "5678": 3, "6196": 3, "6714": 3, "7232": 3, "7750": 3, "8267": 3, "8785": 3, "9303": 3, "9821": 3, "10339": 3, "10857": 3, "11375": 3, "11892": 3, "12410": 3, "12928": 3, "13446": 3, "13964": 3, "14482": 3, "15000": 3, "float6436": 3, "67long_nam": 3, "centerunit": 3, "degree_nstandard_nam": 3, "latitudearrai": 3, "31076087": 3, "31077127": 3, "31078141": 3, "31531438": 3, "31532478": 3, "31533492": 3, "31986789": 3, "31987829": 3, "31988843": 3, "6613811": 3, "66139158": 3, "66140179": 3, "66593461": 3, "66594509": 3, "6659553": 3, "67048812": 3, "6704986": 3, "67050881": 3, "38": 3, "37long_nam": 3, "degree_estandard_nam": 3, "longitudearrai": 3, "81737399": 3, "81172319": 3, "80607239": 3, "38226095": 3, "37661015": 3, "37095935": 3, "81738704": 3, "81173591": 3, "80608478": 3, "38224855": 3, "37659742": 3, "37094629": 3, "8174001": 3, "81174864": 3, "80609718": 3, "38223616": 3, "37658469": 3, "37093323": 3, "81838653": 3, "8127101": 3, "80703366": 3, "38129967": 3, "37562324": 3, "3699468": 3, "81839978": 3, "81272301": 3, "80704624": 3, "38128709": 3, "37561032": 3, "36993356": 3, "81841303": 3, "81273592": 3, "80705882": 3, "38127451": 3, "37559741": 3, "36992031": 3, "projection_y_coordinatelong_nam": 3, "yunit": 3, "marrai": 3, "20000": 3, "19493": 3, "670886": 3, "18987": 3, "341772": 3, "18481": 3, "012658": 3, "17974": 3, "683544": 3, "17468": 3, "35443": 3, "16962": 3, "025316": 3, "16455": 3, "696203": 3, "15949": 3, "367089": 3, "15443": 3, "037975": 3, "14936": 3, "708861": 3, "14430": 3, "379747": 3, "13924": 3, "050633": 3, "13417": 3, "721519": 3, "12911": 3, "392405": 3, "12405": 3, "063291": 3, "11898": 3, "734177": 3, "11392": 3, "405063": 3, "10886": 3, "075949": 3, "10379": 3, "746835": 3, "9873": 3, "417722": 3, "9367": 3, "088608": 3, "8860": 3, "759494": 3, "8354": 3, "43038": 3, "7848": 3, "101266": 3, "7341": 3, "772152": 3, "6835": 3, "443038": 3, "6329": 3, "113924": 3, "5822": 3, "78481": 3, "5316": 3, "455696": 3, "4810": 3, "126582": 3, "4303": 3, "797468": 3, "3797": 3, "468354": 3, "3291": 3, "139241": 3, "2784": 3, "810127": 3, "2278": 3, "481013": 3, "1772": 3, "151899": 3, "1265": 3, "822785": 3, "759": 3, "493671": 3, "253": 3, "164557": 3, "projection_x_coordinatelong_nam": 3, "xunit": 3, "float320": 3, "328": 3, "2792": 3, "nan_fillvalu": 3, "0least_significant_digit": 3, "2unit": 3, "kmlong_nam": 3, "specific_differential_phase_hvstandard_nam": 3, "specific_differential_phase_hvvalid_max": 3, "0valid_min": 3, "0arrai": 3, "39384708": 3, "3280109": 3, "27918172": 3, "33975467": 3, "37267923": 3, "40358114": 3, "58117306": 3, "53130794": 3, "3550077": 3, "37338868": 3, "40296742": 3, "6183313": 3, "737861": 3, "6030566": 3, "5171238": 3, "38776714": 3, "589937": 3, "76450324": 3, "11169312": 3, "1755807": 3, "1316314": 3, "04069889": 3, "04200707": 3, "06410424": 3, "12137793": 3, "16098005": 3, "15206368": 3, "05874029": 3, "04263179": 3, "03657141": 3, "05757918": 3, "15391691": 3, "21629712": 3, "06321226": 3, "06439929": 3, "04148797": 3, "7053635": 3, "4540436": 3, "43115824": 3, "250657": 3, "2552164": 3, "24889752": 3, "9173357": 3, "76775736": 3, "4959262": 3, "24475639": 3, "23949221": 3, "2509762": 3, "83692324": 3, "9031052": 3, "70014554": 3, "22930858": 3, "24111414": 3, "3157209": 3, "9": [3, 4], "386": 3, "543": 3, "053": 3, "22_fillvalu": 3, "slong_nam": 3, "radial_velocity_of_scatterers_away_from_instrumentstandard_nam": 3, "radial_velocity_of_scatterers_away_from_instrumentvalid_max": 3, "95": 3, "14250965e": 3, "01": 3, "38614655e": 3, "00": 3, "54263973e": 3, "25225508e": 3, "97501564e": 3, "38302422e": 3, "10423336e": 3, "00912714e": 3, "41620064e": 3, "27650452e": 3, "00687122e": 3, "18266964e": 3, "06498222e": 3, "97581005e": 3, "63360119e": 3, "91365862e": 3, "69772112e": 3, "51706445e": 3, "12225838e": 3, "36799889e": 3, "34229555e": 3, "54073572e": 3, "54098520e": 3, "53146086e": 3, "26915607e": 3, "36440449e": 3, "31507320e": 3, "52770004e": 3, "54236784e": 3, "52902088e": 3, "41317787e": 3, "46821232e": 3, "43974562e": 3, "54216375e": 3, "53266916e": 3, "50311718e": 3, "17013578e": 3, "09065905e": 3, "05703592e": 3, "73937492e": 3, "66862297e": 3, "05210333e": 3, "17275076e": 3, "15484457e": 3, "14341202e": 3, "05333495e": 3, "07916164e": 3, "58616066e": 3, "18497696e": 3, "17427864e": 3, "17252455e": 3, "87065649e": 3, "7": [3, 4], "74678946e": 3, "81864405e": 3, "98206466e": 3, "41096932e": 3, "84059954e": 3, "87543237e": 3, "04775620e": 3, "10579681e": 3, "07957470e": 3, "67624855e": 3, "25127751e": 3, "21632707e": 3, "30014598e": 3, "58425510e": 3, "66130996e": 3, "60002935e": 3, "77226639e": 3, "61413705e": 3, "14764547e": 3, "62339252e": 3, "25518179e": 3, "54000390e": 3, "94059110e": 3, "18433350e": 3, "51320195e": 3, "07326233e": 3, "23468482e": 3, "87334991e": 3, "00920570e": 3, "35740769e": 3, "87606978e": 3, "95559144e": 3, "94342452e": 3, "03030992e": 3, "84755903e": 3, "84824818e": 3, "31720354e": 3, "02": 3, "95991379e": 3, "96322602e": 3, "10755122e": 3, "61156619e": 3, "89939904e": 3, "07288063e": 3, "02706492e": 3, "22464430e": 3, "34230626e": 3, "09388947e": 3, "47645760e": 3, "05762947e": 3, "00347531e": 3, "04632628e": 3, "05266070e": 3, "21983778e": 3, "3373": 3, "08516": 3, "08782_fillvalu": 3, "5comment": 3, "normal": 3, "coher": 3, "powerstandard_nam": 3, "signal_qualitylong_nam": 3, "signal_qualityvalid_min": 3, "0unit": 3, "ratiovalid_max": 3, "27254432": 3, "33732003": 3, "60975116": 3, "14783083": 3, "15152313": 3, "16354299": 3, "3725878": 3, "4203394": 3, "6501501": 3, "16032329": 3, "14969139": 3, "1342715": 3, "44304436": 3, "53180563": 3, "6834682": 3, "16724406": 3, "15156786": 3, "13165912": 3, "28796026": 3, "4533122": 3, "6361005": 3, "81904864": 3, "8444454": 3, "89995027": 3, "37693366": 3, "54521847": 3, "6871044": 3, "6964567": 3, "76627135": 3, "844395": 3, "49656996": 3, "67641246": 3, "81278867": 3, "70191556": 3, "74592626": 3, "8077218": 3, "65147036": 3, "53046435": 3, "4930681": 3, "14022222": 3, "15775435": 3, "1836108": 3, "7201479": 3, "65800077": 3, "6510938": 3, "15032896": 3, "1814712": 3, "21988581": 3, "7778916": 3, "75546986": 3, "7598572": 3, "21186016": 3, "26353785": 3, "27647588": 3, "08446523": 3, "08476864": 3, "08901437": 3, "08196339": 3, "08472775": 3, "08441067": 3, "08077837": 3, "07604235": 3, "0858216": 3, "08306192": 3, "085151": 3, "08138938": 3, "08749986": 3, "09613953": 3, "0762987": 3, "08360674": 3, "08682757": 3, "08989233": 3, "09236609": 3, "09737824": 3, "10105534": 3, "0898562": 3, "0885241": 3, "08334178": 3, "09034598": 3, "09973927": 3, "11101985": 3, "09523782": 3, "09364486": 3, "08819515": 3, "09199718": 3, "10573816": 3, "12964188": 3, "09642968": 3, "09520254": 3, "0903199": 3, "08478484": 3, "08289456": 3, "08628263": 3, "08290329": 3, "08468222": 3, "0837247": 3, "0836749": 3, "07996146": 3, "08163566": 3, "08346546": 3, "08570329": 3, "08601631": 3, "08311354": 3, "0812319": 3, "08034338": 3, "08419582": 3, "08516061": 3, "08781648": 3, "float32153": 3, "151": 3, "degreeslong_nam": 3, "differential_phase_hvstandard_nam": 3, "differential_phase_hvvalid_max": 3, "180": 3, "152": 3, "99687": 3, "41705": 3, "82037": 3, "138": 3, "62283": 3, "134": 3, "75005": 3, "132": 3, "80003": 3, "56323": 3, "74901": 3, "70963": 3, "26495": 3, "67094": 3, "06926": 3, "149": 3, "96503": 3, "80069": 3, "148": 3, "49857": 3, "131": 3, "01672": 3, "130": 3, "98424": 3, "94574": 3, "124": 3, "80166": 3, "122": 3, "10038": 3, "123": 3, "82143": 3, "07297": 3, "117": 3, "75362": 3, "116": 3, "99466": 3, "125": 3, "046616": 3, "40034": 3, "99032": 3, "98357": 3, "422424": 3, "118": 3, "5713": 3, "127": 3, "9992": 3, "705246": 3, "65259": 3, "121": 3, "15681": 3, "121925": 3, "120": [3, 4], "351326": 3, "56476": 3, "150": 3, "05046": 3, "147": 3, "89175": 3, "83852": 3, "128": 3, "46872": 3, "22084": 3, "1938": 3, "146": 3, "85791": 3, "19414": 3, "129": 3, "61566": 3, "6219": 3, "0772": 3, "85391": 3, "144": 3, "67114": 3, "143": 3, "6956": 3, "61748": 3, "126": 3, "93355": 3, "57653": 3, "135": 3, "81621": 3, "0_fillvalu": 3, "3unit": 3, "dblong_nam": 3, "log_differential_reflectivity_hvstandard_nam": 3, "log_differential_reflectivity_hvvalid_max": 3, "1852": 3, "096": 3, "dbzlong_nam": 3, "equivalent_reflectivity_factorstandard_nam": 3, "equivalent_reflectivity_factorvalid_max": 3, "6181538": 3, "18523404": 3, "09625": 3, "17143": 3, "791811": 3, "072174": 3, "2928004": 3, "0281978": 3, "2770157": 3, "813888": 3, "088855": 3, "878547": 3, "7380273": 3, "1391516": 3, "9497535": 3, "822924": 3, "986829": 3, "17": 3, "167383": 3, "782002": 3, "5906696": 3, "15629116": 3, "16": [3, 4], "733843": 3, "941782": 3, "18": 3, "172533": 3, "9246726": 3, "4568431": 3, "7411606": 3, "376299": 3, "562363": 3, "280836": 3, "1601453": 3, "23642026": 3, "1511474": 3, "920785": 3, "010386": 3, "422356": 3, "6900134": 3, "775827": 3, "3512673": 3, "5292177": 3, "495717": 3, "350307": 3, "977419": 3, "2364204": 3, "5112202": 3, "7548175": 3, "5591135": 3, "079382": 3, "340114": 3, "477549": 3, "0701802": 3, "398108": 3, "045215": 3, "308364": 3, "476562": 3, "63492": 3, "19": 3, "272863": 3, "23": 3, "02878": 3, "612318": 3, "775078": 3, "007137": 3, "006138": 3, "4unit": 3, "db": [3, 4], "specific_attenuationvalid_min": 3, "0valid_max": 3, "0standard_nam": 3, "specific_attenuationarrai": 3, "00713656": 3, "00613812": 3, "02242632": 3, "02349693": 3, "02873702": 3, "03388032": 3, "01652286": 3, "00849293": 3, "01127714": 3, "02873225": 3, "03245907": 3, "05618556": 3, "01058703": 3, "03266276": 3, "02430738": 3, "03704888": 3, "05508688": 3, "10222074": 3, "00052423": 3, "00091418": 3, "00418776": 3, "06597251": 3, "06165824": 3, "07662798": 3, "00043112": 3, "00143902": 3, "00923953": 3, "05432615": 3, "06363788": 3, "07900681": 3, "00089776": 3, "00294519": 3, "01187203": 3, "05676557": 3, "06363319": 3, "07566997": 3, "01633357": 3, "00497473": 3, "00702228": 3, "01456225": 3, "02101471": 3, "02889667": 3, "01388445": 3, "00500822": 3, "00555213": 3, "0180878": 3, "02413508": 3, "04202515": 3, "01538125": 3, "00522051": 3, "00522422": 3, "02329352": 3, "03882167": 3, "07237991": 3, "float3266": 3, "88": 3, "66": 3, "65": 3, "56": 3, "07_fillvalu": 3, "differential_phase_hvvalid_min": 3, "differential_phase_hvarrai": 3, "87954": 3, "31003": 3, "55587": 3, "41": 3, "670944": 3, "40": [3, 4], "601467": 3, "991886": 3, "63": 3, "08436": 3, "73438": 3, "81665": 3, "6719": 3, "961365": 3, "89866": 3, "18453": 3, "62": 3, "537903": 3, "39027": 3, "926723": 3, "873505": 3, "39": 3, "350143": 3, "293705": 3, "194057": 3, "030823": 3, "448269": 3, "717411": 3, "8826": 3, "140263": 3, "09647": 3, "730923": 3, "32": [3, 4, 6], "86312": 3, "78612": 3, "2457": 3, "152058": 3, "710316": 3, "346203": 3, "33": 3, "81314": 3, "58039": 3, "901417": 3, "370464": 3, "61": 3, "144066": 3, "864166": 3, "92945": 3, "31742": 3, "182125": 3, "59": 3, "147583": 3, "49178": 3, "46842": 3, "242016": 3, "08926": 3, "327286": 3, "543495": 3, "58": 3, "261234": 3, "594635": 3, "009895": 3, "118965": 3, "89562": 3, "11736": 3, "86904": 3, "945923": 3, "210945": 3, "714306": 3, "393673": 3, "798183": 3, "044395": 3, "989315": 3, "949383": 3, "842636": 3, "81641": 3, "41425": 3, "318256": 3, "71527": 3, "462845": 3, "57015": 3, "15479": 3, "80082": 3, "432858": 3, "7631": 3, "224148": 3, "579617": 3, "213634": 3, "835964": 3, "77331": 3, "399593": 3, "532394": 3, "88269": 3, "64164": 3, "270744": 3, "7642": 3, "693848": 3, "831867": 3, "546574": 3, "841404": 3, "636265": 3, "059784": 3, "982647": 3, "215878": 3, "60213": 3, "694733": 3, "972107": 3, "934036": 3, "918415": 3, "116165": 3, "21502": 3, "641678": 3, "085392": 3, "950134": 3, "74126": 3, "211903": 3, "00314": 3, "072056": 3, "float3211": 3, "051": 3, "68": 3, "equivalent_reflectivity_factorvalid_min": 3, "equivalent_reflectivity_factorarrai": 3, "351357": 3, "05108": 3, "682205": 3, "7646265": 3, "2055435": 3, "2172985": 3, "24": 3, "183601": 3, "581492": 3, "106165": 3, "239631": 3, "226877": 3, "002514": 3, "781192": 3, "25": [3, 4], "437313": 3, "22699": 3, "954491": 3, "106161": 3, "36722": 3, "8619494": 3, "9727366": 3, "80041": 3, "90654": 3, "058392": 3, "300676": 3, "300826": 3, "20461442": 3, "4699473": 3, "583908": 3, "735043": 3, "401157": 3, "4751354": 3, "5062387": 3, "907118": 3, "136932": 3, "220625": 3, "594551": 3, "438027": 3, "655041": 3, "380459": 3, "140993": 3, "855519": 3, "347261": 3, "532992": 3, "850717": 3, "3036785": 3, "097798": 3, "540058": 3, "06399": 3, "868451": 3, "892404": 3, "546917": 3, "365268": 3, "018854": 3, "412199": 3, "132812": 3, "322891": 3, "97364": 3, "631077": 3, "295807": 3, "493016": 3, "7571": 3, "242": 3, "1unit": 3, "mm": [3, 4], "hrlong_nam": 3, "rainfall_ratevalid_min": 3, "400": 3, "rainfall_ratearrai": 3, "781163": 3, "757117": 3, "2415626": 3, "4250486": 3, "8763523": 3, "2506135": 3, "6142966": 3, "9314943": 3, "2883373": 3, "8759115": 3, "1668527": 3, "8652344": 3, "0837741": 3, "6753967": 3, "01788": 3, "525053": 3, "8211174": 3, "9154005": 3, "10937975": 3, "16075858": 3, "52008164": 3, "6285896": 3, "345267": 3, "3759904": 3, "09615779": 3, "23623344": 3, "98115283": 3, "8281817": 3, "483109": 3, "5434413": 3, "16352384": 3, "43829355": 3, "2316028": 3, "974742": 3, "457212": 3, "303609": 3, "5839938": 3, "66472024": 3, "8404307": 3, "6318325": 3, "192136": 3, "8319285": 3, "40457": 3, "6856669": 3, "72962606": 3, "9363855": 3, "4590728": 3, "7730544": 3, "5034256": 3, "70419997": 3, "7141962": 3, "3876526": 3, "575034": 3, "8070908": 3, "float3267": 3, "05363": 3, "8004": 3, "15121": 3, "66738": 3, "615337": 3, "033962": 3, "08429": 3, "72799": 3, "58178": 3, "68248": 3, "995487": 3, "911114": 3, "175385": 3, "40473": 3, "953045": 3, "882885": 3, "352654": 3, "38244": 3, "300953": 3, "070152": 3, "305832": 3, "978794": 3, "045296": 3, "26834": 3, "141483": 3, "57992": 3, "512615": 3, "309418": 3, "00181": 3, "20431": 3, "64786": 3, "74224": 3, "56456": 3, "531235": 3, "307854": 3, "22273": 3, "99418": 3, "87706": 3, "770283": 3, "292397": 3, "157047": 3, "808723": 3, "4345": 3, "484425": 3, "19432": 3, "06828": 3, "09046": 3, "93113": 3, "26404": 3, "624977": 3, "986443": 3, "026394": 3, "790176": 3, "6753": 3, "8671": 3, "5unit": 3, "ratiolong_nam": 3, "cross_correlation_ratio_hvstandard_nam": 3, "cross_correlation_ratio_hvvalid_max": 3, "53553617": 3, "67531186": 3, "8670627": 3, "91174066": 3, "93050927": 3, "9374308": 3, "52550304": 3, "6097211": 3, "804027": 3, "93328655": 3, "9400089": 3, "948859": 3, "56922865": 3, "6268194": 3, "7644688": 3, "9405333": 3, "95134884": 3, "9563892": 3, "53971577": 3, "676525": 3, "72586274": 3, "95127517": 3, "9473957": 3, "95468587": 3, "5287703": 3, "6440405": 3, "73550427": 3, "9429988": 3, "94958735": 3, "9567778": 3, "5993457": 3, "71276736": 3, "8241147": 3, "94471395": 3, "95013756": 3, "9563998": 3, "7644525": 3, "73417854": 3, "73286015": 3, "90793645": 3, "9219283": 3, "92789215": 3, "77392995": 3, "7474675": 3, "7587202": 3, "9153635": 3, "9201953": 3, "92839134": 3, "81257594": 3, "7904301": 3, "795804": 3, "92266524": 3, "9329199": 3, "93867093": 3, "37034425": 3, "1149": 3, "007812": 3, "00645_fillvalu": 3, "specific_differential_phase_hvvalid_min": 3, "specific_differential_phase_hvarrai": 3, "76699418e": 3, "14852205e": 3, "59425887e": 3, "19445843e": 3, "66558512e": 3, "29319500e": 3, "28163773e": 3, "90479958e": 3, "25933722e": 3, "76753178e": 3, "53909582e": 3, "85868724e": 3, "55613798e": 3, "08757335e": 3, "94877738e": 3, "52653757e": 3, "11782933e": 3, "45571323e": 3, "80828314e": 3, "47437002e": 3, "16339443e": 3, "57126077e": 3, "67256501e": 3, "25299171e": 3, "44192856e": 3, "61898104e": 3, "04513106e": 3, "94285892e": 3, "39868297e": 3, "04007402e": 3, "58312007e": 3, "08432421e": 3, "51610228e": 3, "33374957e": 3, "61860995e": 3, "72424924e": 3, "51719880e": 3, "28741214e": 3, "26266617e": 3, "77520027e": 3, "63642830e": 3, "53605631e": 3, "40511274e": 3, "35171729e": 3, "98158109e": 3, "77354692e": 3, "27539828e": 3, "10269925e": 3, "61024731e": 3, "62921619e": 3, "04193974e": 3, "64868474e": 3, "09701374e": 3, "82033682e": 3, "10059407e": 3, "40665521e": 3, "81361747e": 3, "00000000e": 3, "12772626e": 3, "10341162e": 3, "81250000e": 3, "89429997e": 3, "25538994e": 3, "25196192e": 3, "09163960e": 3, "83305725e": 3, "77163496e": 3, "19654029e": 3, "59673661e": 3, "05094397e": 3, "01037072e": 3, "87828600e": 3, "42552692e": 3, "41317868e": 3, "61398783e": 3, "02019254e": 3, "00450236e": 3, "49651762e": 3, "26346625e": 3, "38148747e": 3, "13495137e": 3, "53513502e": 3, "86638613e": 3, "87415323e": 3, "18134825e": 3, "74410797e": 3, "16409937e": 3, "92447924e": 3, "92458371e": 3, "40913581e": 3, "08285284e": 3, "28112550e": 3, "64294159e": 3, "98186424e": 3, "31758182e": 3, "45023165e": 3, "float32765": 3, "756": 3, "481e": 3, "491e": 3, "03standard_nam": 3, "radius_of_influencelong_nam": 3, "influenc": 3, "mappingunit": 3, "mleast_significant_digit": 3, "1_fillvalu": 3, "6497": 3, "33453": 3, "747": 3, "1426": 3, "1425": 3, "746": 3, "8991": 3, "737": 3, "58545": 3, "728": 3, "14844": 3, "1484": 3, "791": 3, "5426": 3, "782": 3, "22736": 3, "773": 3, "03546": 3, "0354": 3, "772": 3, "792": 3, "763": 3, "47833": 3, "4783": 3, "754": 3, "0413": 3, "1446": 3, "2496": 3, "1436": 3, "6926": 3, "1427": 3, "2556": 3, "2555": 3, "1455": 3, "4417": 3, "0062": 3, "1464": [3, 4], "7568": 3, "2498": 3, "1490": 3, "1481": 3, "3345": 3, "1472": 3, "1471": 3, "899": 3, "1462": 3, "5854": 3, "1453": 3, "1483": 3, "timepandasindexpandasindex": 3, "cftimeindex": 3, "x27": 3, "length": 3, "calendar": 3, "standard": [3, 4], "freq": 3, "none": [3, 4], "zpandasindexpandasindex": 3, "8571428571429": 3, "7142857142858": 3, "5714285714284": 3, "4285714285716": 3, "2857142857147": 3, "1428571428573": 3, "857142857143": 3, "714285714286": 3, "571428571429": 3, "428571428572": 3, "285714285715": 3, "142857142858": 3, "57142857143": 3, "285714285716": 3, "142857142859": 3, "name": [3, 4], "ypandasindexpandasindex": 3, "67088607595": 3, "3417721519": 3, "012658227846": 3, "683544303796": 3, "354430379746": 3, "025316455696": 3, "696202531646": 3, "367088607594": 3, "037974683544": 3, "708860759492": 3, "379746835442": 3, "050632911392": 3, "721518987342": 3, "39240506329": 3, "06329113924": 3, "734177215189": 3, "405063291139": 3, "075949367088": 3, "746835443037": 3, "417721518987": 3, "088607594937": 3, "759493670885": 3, "430379746835": 3, "101265822785": 3, "772151898733": 3, "443037974683": 3, "113924050633": 3, "784810126581": 3, "455696202531": 3, "126582278481": 3, "797468354429": 3, "468354430379": 3, "139240506327": 3, "810126582277": 3, "481012658227": 3, "151898734177": 3, "822784810127": 3, "4936708860732": 3, "1645569620232": 3, "16455696202684": 3, "4936708860769": 3, "4810126582306": 3, "8101265822806": 3, "1392405063307": 3, "4683544303807": 3, "797468354431": 3, "455696202534": 3, "7848101265845": 3, "1139240506345": 3, "443037974685": 3, "772151898735": 3, "430379746838": 3, "759493670888": 3, "088607594938": 3, "417721518988": 3, "746835443038": 3, "405063291142": 3, "734177215192": 3, "063291139242": 3, "392405063292": 3, "721518987346": 3, "379746835446": 3, "037974683546": 3, "3670886076": 3, "0253164557": 3, "6835443038": 3, "012658227854": 3, "670886075954": 3, "xpandasindexpandasindex": 3, "attribut": 3, "liner": 3, "isel": 3, "And": 3, "given": 3, "sel": 3, "1300": 3, "nearest": 3, "mean": 3, "matter": 3, "routin": 4, "np": 4, "pyart": 4, "config": [4, 5], "load_config": 4, "mch_config": 4, "": [4, 6], "filenotfounderror": 4, "traceback": 4, "recent": 4, "call": 4, "last": 4, "line": 4, "pyrad": [], "src": [], "filenam": 4, "79": 4, "try": 4, "importlib": 4, "machineri": 4, "sourcefileload": 4, "cfile": 4, "metadata_config": 4, "load_modul": 4, "importerror": 4, "83": 4, "imp": 4, "frozen": 4, "_bootstrap_extern": 4, "548": [], "_check_name_wrapp": 4, "self": 4, "arg": 4, "kwarg": 4, "1063": [], "fullnam": 4, "888": [], "_bootstrap": 4, "287": [], "_load_module_shim": 4, "619": [], "_exec": 4, "spec": 4, "879": [], "exec_modul": 4, "1016": [], "get_cod": 4, "1073": [], "get_data": 4, "path": 4, "errno": 4, "No": 4, "own": 4, "configur": [4, 6], "field": 4, "much": 4, "startup": 4, "correspond": 4, "third": 4, "oper": [4, 6], "ppi": [4, 6], "raw": [4, 6], "pre": 4, "temperatur": 4, "obtain": 4, "cosmo": 4, "nwp": 4, "object": 4, "wa": 4, "previous": 4, "freez": 4, "quit": 4, "high": 4, "4200": 4, "file_radar": 4, "exercice1_swiss_thunderstorm": 4, "mhl2217907250u": 4, "003": 4, "read_cfradi": 4, "temp": 4, "20220628073500_savevol_cosmo_lookup_temp": 4, "add_field": 4, "gatefilt": 4, "kind": 4, "filter": [4, 6], "problemat": 4, "pixel": 4, "were": 4, "textur": 4, "strong": 4, "thunderstorm": 4, "extend": 4, "snr": 4, "ratio": 4, "less": 4, "than": 4, "gtfilter": 4, "moment_and_texture_based_gate_filt": 4, "exclude_below": 4, "signal_to_noise_ratio": 4, "subplot": 4, "sharex": 4, "sharei": 4, "colorbar_label": 4, "set_xlim": 4, "50": 4, "set_ylim": 4, "set_aspect": 4, "equal": 4, "box": 4, "clear": 4, "mostli": 4, "expect": 4, "behind": 4, "so": 4, "idea": 4, "knowledg": 4, "veri": 4, "insight": 4, "calculate_attenuation_zphi": 4, "fzl": 4, "phidp_field": 4, "uncorrected_differential_phas": 4, "temp_field": 4, "temp_ref": 4, "spec_at": 4, "pia": [4, 6], "cor_z": 4, "spec_diff_at": 4, "pida": [4, 6], "cor_zdr": 4, "corrected_reflect": 4, "corrected_differential_reflect": 4, "phi": 4, "relat": 4, "differenti": 4, "howev": 4, "onli": 4, "liquid": 4, "fix": 4, "height": [4, 6], "later": 4, "integr": 4, "zdr": [4, 6], "zh": [4, 6], "clearli": 4, "observ": 4, "signific": 4, "indic": 4, "presenc": 4, "oblat": 4, "drop": 4, "algorithm": [4, 6], "directli": 4, "numer": 4, "phidp": [4, 6], "three": 4, "maesaka": [4, 6], "et": [4, 6], "al": [4, 6], "2012": 4, "fast": 4, "robust": 4, "assum": 4, "posit": 4, "therefor": 4, "rainfal": [4, 6], "melt": 4, "layer": 4, "warm": 4, "_": 4, "kdp_maesaka": 4, "psidp_field": 4, "specific_differential_phas": 4, "fromnumer": 4, "784": 4, "userwarn": 4, "partit": 4, "kth": 4, "axi": 4, "A": [4, 6], "cluster": 4, "center": 4, "besic": [4, 6], "rhohv": [4, 6], "classifi": 4, "ic": 4, "hail": 4, "densiti": 4, "graupel": 4, "wet": 4, "snow": 4, "orient": 4, "rain": 4, "rime": 4, "particl": 4, "light": 4, "crystal": 4, "aggreg": 4, "centroid": 4, "polarimetr": 4, "suit": 4, "mont": 4, "lema": 4, "left": 4, "empti": 4, "frequenc": 4, "band": [4, 6], "c": [4, 6], "8231": 4, "2514": 4, "0644": 4, "9861": 4, "1380": 4, "0239": 4, "1971": 4, "9661": 4, "9447": 4, "1142": 4, "9787": 4, "974": 4, "34": 4, "2450": 4, "5540": 4, "1459": 4, "9937": 4, "945": 4, "9432": 4, "0110": 4, "5141": 4, "9928": 4, "993": 4, "5202": 4, "3498": 4, "9746": 4, "843": 4, "5287": 4, "9751": 4, "2640": 4, "9804": 4, "55": 4, "52": 4, "6547": 4, "7054": 4, "5101": 4, "9765": 4, "1114": 4, "46": 4, "4998": 4, "1978": 4, "6431": 4, "9845": 4, "1010": 4, "hydro": 4, "hydroclass_semisupervis": 4, "mass_cent": 4, "refl_field": 4, "zdr_field": 4, "kdp_field": 4, "rhv_field": 4, "uncorrected_cross_correlation_ratio": 4, "radar_echo_classif": 4, "mpl": 4, "label": 4, "ag": 4, "lr": 4, "rp": 4, "rn": 4, "vi": 4, "w": [4, 6], "mh": 4, "ih": 4, "hdg": 4, "tick": 4, "arang": 4, "len": 4, "boundari": 4, "norm": 4, "color": 4, "boundarynorm": 4, "256": 4, "cax": 4, "ticklab": 4, "command": 4, "slightli": 4, "complic": 4, "due": 4, "categor": 4, "reveal": 4, "surround": 4, "isol": 4, "unfilt": 4, "inde": 4, "intens": 4, "dai": 4, "sever": [4, 6], "refin": 4, "reli": 4, "est_rain_rate_hydro": 4, "hydro_field": 4, "a_field": 4, "thresh": 4, "radar_estimated_rain_r": 4, "land": 4, "border": 4, "radarmapdisplai": 4, "lon_bnd": 4, "lat_bnd": 4, "titl": 4, "h": 4, "min_lon": 4, "max_lon": 4, "mask_outsid": 4, "min_lat": 4, "max_lat": 4, "lon_lin": 4, "10m": 4, "lat_lin": 4, "lat_0": 4, "lon_0": 4, "embellish": 4, "states_provinc": 4, "naturalearthfeatur": 4, "categori": 4, "cultur": 4, "admin_0_countri": 4, "scale": 4, "facecolor": 4, "lake": 4, "physic": 4, "blue": 4, "river": 4, "add_featur": 4, "edgecolor": 4, "grai": 4, "alpha": 4, "didn": 4, "aloft": 4, "extrem": 4, "too": 4, "becaus": 4, "uncertain": 4, "close": 4, "descript": 5, "cours": 5, "doe": 6, "jma": 6, "seri": 6, "pseudorhi": 6, "bscope": 6, "histogram": 6, "main_process_data": 6, "cfgpath": 6, "starttim": 6, "20230801000000": 6, "endtim": 6, "20230802000000": 6, "jma_plot_vol": 6, "txt": 6, "convert": 6, "surfac": 6, "slice": 6, "cross": 6, "section": 6, "jma_grid": 6, "meteofr": 6, "20210114101500": 6, "20210114120000": 6, "mf_pam_mtcy_filt": 6, "grib": 6, "iso0": 6, "vulpiani": 6, "variat": 6, "kalman": 6, "least": 6, "squar": 6, "zphi": 6, "philinear": 6, "mf_pam_mtcy_kdp": 6, "classif": 6, "With": 6, "semi": 6, "supervis": 6, "20200516200500": 6, "20200516220000": 6, "mf_odim_coll_hydro": 6, "ml": 6, "giangrand": 6, "vpr": 6, "relev": 6, "product": 6, "timeseri": 6, "overlaid": 6, "altitud": 6, "appar": 6, "theoret": 6, "mf_odim_coll_ml": 6, "r": 6, "relationship": 6, "ah": 6, "everi": 6, "accumul": 6, "over": 6, "hour": 6, "mf_odim_coll_rr": 6, "vad": 6, "save": 6, "csv": 6, "wind": 6, "v": 6, "compon": 6, "speed": 6, "mf_pag_mtcy_doppl": 6, "dealias": 6, "wrapper": 6, "sound": 6, "wmo": 6, "06610": 6, "initi": 6, "condit": 6, "2d": 6, "arrow": 6, "1000": 6, "2000": 6, "3000": 6, "l": 6, "runwai": 6, "rw32": 6, "zurich": 6, "airport": 6, "20231127174000": 6, "20231127175000": 6, "dda": 6, "qvp": 6, "origin": 6, "ryzhkov": 6, "tobin": 6, "kumjian": 6, "2017": 6, "enhanc": 6, "bukov\u010di\u0107": 6, "slant": 6, "mf_odim_coll_qvp": 6, "swiss": 6, "topographi": 6, "geotiff": 6, "static": 6, "power": 6, "mobil": 6, "visibility_norad": 6, "g": 6, "slope": 6, "aspect": 6, "min": 6, "main_process_gecsx": 6, "20231127170000": 6, "20231127180000": 6, "download": 2, "adc": 2, "gov": 2, "example_data": 2, "home": 2, "cach": 2, "dataset": 2, "0x7f1a5aa0d760": 2, "0x7f3e33e19d60": 3, "srv": 4, "529": 4, "1029": 4, "854": 4, "271": 4, "613": 4, "846": 4, "982": 4, "1039": 4}, "objects": {}, "objtypes": {}, "objnames": {}, "titleterms": {"wmo": 0, "asean": 0, "radar": [0, 2, 6], "workshop": 0, "pyrad": [0, 5, 6], "cours": 0, "motiv": 0, "author": 0, "webpag": 0, "run": 0, "notebook": 0, "binder": 0, "your": 0, "own": 0, "machin": 0, "py": [1, 2, 3, 4], "art": [1, 2, 3, 4], "tutori": [1, 5], "basic": [1, 2], "grid": [1, 3, 6], "overview": [2, 3, 4], "prerequisit": [2, 3], "import": [2, 3], "an": [2, 3], "histori": 2, "what": [2, 3], "can": 2, "pyart": [2, 3], "do": 2, "read": [2, 3, 4], "data": [2, 3, 4], "us": [2, 3], "io": 2, "investig": 2, "object": [2, 3], "extract": 2, "sampl": 2, "field": 2, "plot": [2, 3, 6], "our": [2, 3], "util": 2, "radarmapdisplai": 2, "summari": [2, 3], "": [2, 3], "next": [2, 3], "resourc": [2, 3, 4], "refer": [2, 3, 4], "i": 3, "why": 3, "antenna": 3, "v": 3, "cartesian": [3, 6], "coordin": 3, "visual": 3, "test": 3, "dataset": 3, "setup": 3, "routin": 3, "map": 3, "grid_from_radar": 3, "configur": 3, "up": 3, "horizont": 3, "view": 3, "latitudin": 3, "slice": 3, "xarrai": 3, "process": 4, "ground": [4, 6], "clutter": [4, 6], "nois": 4, "remov": [4, 6], "attenu": 4, "correct": 4, "kdp": [4, 6], "estim": [4, 6], "hydrometeor": [4, 6], "classif": 4, "qpe": 4, "descript": 6, "config": 6, "file": 6, "0": 6, "volum": 6, "scan": 6, "pyrad_config": 6, "00_plot_vol": 6, "1": 6, "creat": 6, "01_grid": 6, "2": 6, "02_clutter_filt": 6, "3": 6, "comput": 6, "03_phidp_kdp": 6, "4": 6, "classifii": 6, "04_hydroclass": 6, "5": 6, "melt": 6, "layer": 6, "detect": 6, "05_ml": 6, "6": 6, "quantit": 6, "precipit": 6, "06_rr": 6, "7": 6, "veloc": 6, "azimuth": 6, "displai": 6, "07_vad": 6, "8": 6, "dual": 6, "doppler": 6, "08_dda": 6, "9": 6, "quasi": 6, "vertic": 6, "profil": 6, "09_qvp": 6, "10": 6, "visibl": 6, "from": 6, "dem": 6, "gecsx": 6, "tool": 6, "10_visibl": 6}, "envversion": {"sphinx.domains.c": 2, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 8, "sphinx.domains.index": 1, "sphinx.domains.javascript": 2, "sphinx.domains.math": 2, "sphinx.domains.python": 3, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx": 57}, "alltitles": {"WMO/ASEAN radar workshop - Pyrad course": [[0, "wmo-asean-radar-workshop-pyrad-course"]], "Motivation": [[0, "motivation"]], "Authors": [[0, "authors"]], "Webpage": [[0, "webpage"]], "Running the Notebooks": [[0, "running-the-notebooks"]], "Running on Binder": [[0, "running-on-binder"]], "Running on Your Own Machine": [[0, "running-on-your-own-machine"]], "Py-ART Tutorial": [[1, "py-art-tutorial"]], "Py-ART Basics and Gridding": [[1, "py-art-basics-and-gridding"]], "Py-ART Basics": [[2, "py-art-basics"]], "Overview": [[2, "overview"], [3, "overview"], [4, "overview"]], "Prerequisites": [[2, "prerequisites"], [3, "prerequisites"]], "Imports": [[2, "imports"], [3, "imports"]], "An Overview of Py-ART": [[2, "an-overview-of-py-art"]], "History of the Py-ART": [[2, "history-of-the-py-art"]], "What can PyART Do?": [[2, "what-can-pyart-do"]], "Reading in Data Using Py-ART": [[2, "reading-in-data-using-py-art"]], "Reading data in using pyart.io.read": [[2, "reading-data-in-using-pyart-io-read"]], "Investigate the pyart.Radar object": [[2, "investigate-the-pyart-radar-object"]], "Extract a sample data field": [[2, "extract-a-sample-data-field"]], "Plotting our Radar Data": [[2, "plotting-our-radar-data"]], "An Overview of Py-ART Plotting Utilities": [[2, "an-overview-of-py-art-plotting-utilities"]], "Use the RadarMapDisplay with our data": [[2, "use-the-radarmapdisplay-with-our-data"]], "Summary": [[2, "summary"], [3, "summary"]], "What\u2019s Next": [[2, "what-s-next"], [3, "what-s-next"]], "Resources and References": [[2, "resources-and-references"], [3, "resources-and-references"], [4, "resources-and-references"]], "Py-ART Gridding": [[3, "py-art-gridding"]], "What is gridding and why is it important?": [[3, "what-is-gridding-and-why-is-it-important"]], "Antenna vs. Cartesian Coordinates": [[3, "antenna-vs-cartesian-coordinates"]], "Why is Gridding Important?": [[3, "why-is-gridding-important"]], "An overview of gridding with Py-ART": [[3, "an-overview-of-gridding-with-py-art"]], "Read in and Visualize a Test Dataset": [[3, "read-in-and-visualize-a-test-dataset"]], "Setup our Gridding Routine with pyart.map.grid_from_radars()": [[3, "setup-our-gridding-routine-with-pyart-map-grid-from-radars"]], "Use our configuration to grid the data!": [[3, "use-our-configuration-to-grid-the-data"]], "Plot up the Grid Object": [[3, "plot-up-the-grid-object"]], "Plot a horizontal view of the data": [[3, "plot-a-horizontal-view-of-the-data"]], "Plot a Latitudinal Slice": [[3, "plot-a-latitudinal-slice"]], "Plot with Xarray": [[3, "plot-with-xarray"]], "Py-ART Processing": [[4, "py-art-processing"]], "Reading the data": [[4, "reading-the-data"]], "Ground-clutter and noise removal": [[4, "ground-clutter-and-noise-removal"]], "Attenuation correction": [[4, "attenuation-correction"]], "KDP estimation": [[4, "kdp-estimation"]], "Hydrometeor classification": [[4, "hydrometeor-classification"]], "QPE": [[4, "qpe"]], "pyrad Tutorial": [[5, "pyrad-tutorial"]], "Description of pyrad config files": [[6, "description-of-pyrad-config-files"]], "0 : Plot a volume scan (pyrad_config/00_plot_vol)": [[6, "plot-a-volume-scan-pyrad-config-00-plot-vol"]], "1 : Create a Cartesian grid and plot it (pyrad_config/01_grid)": [[6, "create-a-cartesian-grid-and-plot-it-pyrad-config-01-grid"]], "2 : Ground-clutter removal (pyrad_config/02_clutter_filter)": [[6, "ground-clutter-removal-pyrad-config-02-clutter-filter"]], "3 : Compute KDP (pyrad_config/03_phidp_kdp)": [[6, "compute-kdp-pyrad-config-03-phidp-kdp"]], "4 : Classifiy hydrometeors (pyrad_config/04_hydroclass)": [[6, "classifiy-hydrometeors-pyrad-config-04-hydroclass"]], "5 : Melting layer detection (pyrad_config/05_ml)": [[6, "melting-layer-detection-pyrad-config-05-ml"]], "6 : Quantitative precipitation estimation (pyrad_config/06_rr)": [[6, "quantitative-precipitation-estimation-pyrad-config-06-rr"]], "7 : Compute velocity azimuth display (pyrad_config/07_VAD)": [[6, "compute-velocity-azimuth-display-pyrad-config-07-vad"]], "8 : Compute dual-Doppler estimation (pyrad_config/08_DDA)": [[6, "compute-dual-doppler-estimation-pyrad-config-08-dda"]], "9 : Quasi-vertical profiles (pyrad_config/09_QVP)": [[6, "quasi-vertical-profiles-pyrad-config-09-qvp"]], "10 : Radar visibility from a DEM with the GECSX tool (pyrad_config/10_visibility/)": [[6, "radar-visibility-from-a-dem-with-the-gecsx-tool-pyrad-config-10-visibility"]]}, "indexentries": {}})
\ No newline at end of file