.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "examples/plotting/plot_nexrad_reflectivity.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note :ref:`Go to the end ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_examples_plotting_plot_nexrad_reflectivity.py: ==================================== Create a plot of NEXRAD reflectivity ==================================== An example which creates a plot containing the first collected scan from a NEXRAD file. .. GENERATED FROM PYTHON SOURCE LINES 10-40 .. image-sg:: /examples/plotting/images/sphx_glr_plot_nexrad_reflectivity_001.png :alt: NEXRAD Reflectivity :srcset: /examples/plotting/images/sphx_glr_plot_nexrad_reflectivity_001.png :class: sphx-glr-single-img .. code-block:: Python print(__doc__) # Author: Jonathan J. Helmus (jhelmus@anl.gov) # License: BSD 3 clause import matplotlib.pyplot as plt import pyart from pyart.testing import get_test_data # open the file, create the displays and figure filename = get_test_data("Level2_KATX_20130717_1950.ar2v") radar = pyart.io.read_nexrad_archive(filename) display = pyart.graph.RadarDisplay(radar) fig = plt.figure(figsize=(6, 5)) # plot super resolution reflectivity ax = fig.add_subplot(111) display.plot( "reflectivity", 0, title="NEXRAD Reflectivity", vmin=-32, vmax=64, colorbar_label="", ax=ax, ) display.plot_range_ring(radar.range["data"][-1] / 1000.0, ax=ax) display.set_limits(xlim=(-500, 500), ylim=(-500, 500), ax=ax) plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 1.812 seconds) .. _sphx_glr_download_examples_plotting_plot_nexrad_reflectivity.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_nexrad_reflectivity.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_nexrad_reflectivity.py ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_