Skip to content

Commit

Permalink
deploy: ed39f4d
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrover1 committed Aug 30, 2024
1 parent a4b0707 commit 431331b
Show file tree
Hide file tree
Showing 133 changed files with 321 additions and 310 deletions.
Binary file not shown.
Binary file modified _downloads/113656d11b78abf152bbfd5d68a9e2e6/plot_cloud_mask.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/186aee502f3fe8da716eddb0555d1711/plot_rhi_mdv.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/3e4e352c88f759a6a25973ce5452d39c/plot_max_cappi.zip
Binary file not shown.
Binary file modified _downloads/422f684956c90b77f98e307629348f8d/plot_cfad.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/4c163f9c524ea7f3f69d0be8edde0139/plot_hydrometeor.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/51d282e4b686b82578300459c770ae93/plot_xradar.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/803a29460e27c86c5df8332fb7f53174/plot_xsect.zip
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/98d8d042e77984251532ea82bc58a668/plot_vad.zip
Binary file not shown.
Binary file modified _downloads/a5d5ec1b7037dbde171e1e4d5cff0fc0/plot_attenuation.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/bc82bea3a5dd7bdba60b65220891d9e5/examples_python.zip
Binary file not shown.
Binary file modified _downloads/d0514770b9e92f45836a6c18a4aa71cd/plot_ppi_mdv.zip
Binary file not shown.
Binary file modified _downloads/d5501074893e5d83167c803c3a5ba7b1/plot_dealias.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/e77b71366e0f7d41c9880a842ac1b65c/plot_grid_xradar.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified _downloads/fb625db3c50d423b1b7881136ffdeec8/examples_jupyter.zip
Binary file not shown.
Binary file not shown.
13 changes: 12 additions & 1 deletion _modules/pyart/graph/gridmapdisplay.html
Original file line number Diff line number Diff line change
Expand Up @@ -485,10 +485,16 @@ <h1>Source code for pyart.graph.gridmapdisplay</h1><div class="highlight"><pre>

<span class="kn">import</span> <span class="nn">warnings</span>

<span class="kn">import</span> <span class="nn">cartopy</span>
<span class="kn">import</span> <span class="nn">matplotlib.pyplot</span> <span class="k">as</span> <span class="nn">plt</span>
<span class="kn">import</span> <span class="nn">numpy</span> <span class="k">as</span> <span class="nn">np</span>

<span class="k">try</span><span class="p">:</span>
<span class="kn">import</span> <span class="nn">cartopy</span> <span class="c1"># noqa</span>

<span class="n">_CARTOPY_AVAILABLE</span> <span class="o">=</span> <span class="kc">True</span>
<span class="k">except</span> <span class="ne">ImportError</span><span class="p">:</span>
<span class="n">_CARTOPY_AVAILABLE</span> <span class="o">=</span> <span class="kc">False</span>

<span class="k">try</span><span class="p">:</span>
<span class="kn">import</span> <span class="nn">metpy</span> <span class="c1"># noqa</span>

Expand Down Expand Up @@ -549,6 +555,11 @@ <h1>Source code for pyart.graph.gridmapdisplay</h1><div class="highlight"><pre>

<span class="k">def</span> <span class="fm">__init__</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">grid</span><span class="p">,</span> <span class="n">debug</span><span class="o">=</span><span class="kc">False</span><span class="p">):</span>
<span class="w"> </span><span class="sd">&quot;&quot;&quot;initalize the object.&quot;&quot;&quot;</span>
<span class="c1"># check that cartopy and xarray are available</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">_CARTOPY_AVAILABLE</span><span class="p">:</span>
<span class="k">raise</span> <span class="n">MissingOptionalDependency</span><span class="p">(</span>
<span class="s2">&quot;Cartopy is required to use GridMapDisplay but is not installed!&quot;</span>
<span class="p">)</span>
<span class="k">if</span> <span class="ow">not</span> <span class="n">_XARRAY_AVAILABLE</span><span class="p">:</span>
<span class="k">raise</span> <span class="n">MissingOptionalDependency</span><span class="p">(</span>
<span class="s2">&quot;Xarray is required to use GridMapDisplay but is not installed!&quot;</span>
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/correct/plot_attenuation.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ for a polarimetric radar using a Z-PHI method implemented in Py-ART.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 10.873 seconds)
**Total running time of the script:** (0 minutes 9.629 seconds)


.. _sphx_glr_download_examples_correct_plot_attenuation.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/correct/plot_cloud_mask.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ to calculate the mask.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 0.526 seconds)
**Total running time of the script:** (0 minutes 0.703 seconds)


.. _sphx_glr_download_examples_correct_plot_cloud_mask.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/correct/plot_dealias.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ using the region-based dealiasing algorithm in Py-ART.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (1 minutes 2.862 seconds)
**Total running time of the script:** (0 minutes 59.546 seconds)


.. _sphx_glr_download_examples_correct_plot_dealias.py:
Expand Down
8 changes: 4 additions & 4 deletions _sources/examples/correct/sg_execution_times.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Computation times
=================
**01:14.262** total execution time for 3 files **from examples/correct**:
**01:09.878** total execution time for 3 files **from examples/correct**:

.. container::

Expand All @@ -33,11 +33,11 @@ Computation times
- Time
- Mem (MB)
* - :ref:`sphx_glr_examples_correct_plot_dealias.py` (``plot_dealias.py``)
- 01:02.862
- 00:59.546
- 0.0
* - :ref:`sphx_glr_examples_correct_plot_attenuation.py` (``plot_attenuation.py``)
- 00:10.873
- 00:09.629
- 0.0
* - :ref:`sphx_glr_examples_correct_plot_cloud_mask.py` (``plot_cloud_mask.py``)
- 00:00.526
- 00:00.703
- 0.0
4 changes: 2 additions & 2 deletions _sources/examples/io/plot_nexrad_data_aws.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ Let's take a look at a summary of what fields are available.
.. code-block:: none
['clutter_filter_power_removed', 'cross_correlation_ratio', 'spectrum_width', 'differential_reflectivity', 'velocity', 'differential_phase', 'reflectivity']
['differential_reflectivity', 'differential_phase', 'spectrum_width', 'cross_correlation_ratio', 'reflectivity', 'clutter_filter_power_removed', 'velocity']
Expand Down Expand Up @@ -314,7 +314,7 @@ Note: the reflectivity and velocity fields are in different radars, so we need t

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 15.219 seconds)
**Total running time of the script:** (0 minutes 13.771 seconds)


.. _sphx_glr_download_examples_io_plot_nexrad_data_aws.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/io/plot_older_nexrad_data_aws.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ Everything now looks correct as this is in Handford CA!

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 8.569 seconds)
**Total running time of the script:** (0 minutes 8.751 seconds)


.. _sphx_glr_download_examples_io_plot_older_nexrad_data_aws.py:
Expand Down
6 changes: 3 additions & 3 deletions _sources/examples/io/sg_execution_times.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Computation times
=================
**00:23.788** total execution time for 2 files **from examples/io**:
**00:22.522** total execution time for 2 files **from examples/io**:

.. container::

Expand All @@ -33,8 +33,8 @@ Computation times
- Time
- Mem (MB)
* - :ref:`sphx_glr_examples_io_plot_nexrad_data_aws.py` (``plot_nexrad_data_aws.py``)
- 00:15.219
- 00:13.771
- 0.0
* - :ref:`sphx_glr_examples_io_plot_older_nexrad_data_aws.py` (``plot_older_nexrad_data_aws.py``)
- 00:08.569
- 00:08.751
- 0.0
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ case where our scans don't neccessarily match exactly in time.

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 36.355 seconds)
**Total running time of the script:** (0 minutes 35.794 seconds)


.. _sphx_glr_download_examples_mapping_plot_compare_two_radars_gatemapper.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ negligible at low elevation angles common to PPI sweeps.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 6.009 seconds)
**Total running time of the script:** (0 minutes 5.742 seconds)


.. _sphx_glr_download_examples_mapping_plot_grid_single_sweep_ppi.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Cartesian grid.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 9.440 seconds)
**Total running time of the script:** (0 minutes 7.342 seconds)


.. _sphx_glr_download_examples_mapping_plot_map_one_radar_to_grid.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ coordinates to a Cartesian grid.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 13.578 seconds)
**Total running time of the script:** (0 minutes 11.507 seconds)


.. _sphx_glr_download_examples_mapping_plot_map_two_radars_to_grid.py:
Expand Down
10 changes: 5 additions & 5 deletions _sources/examples/mapping/sg_execution_times.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Computation times
=================
**01:05.382** total execution time for 4 files **from examples/mapping**:
**01:00.385** total execution time for 4 files **from examples/mapping**:

.. container::

Expand All @@ -33,14 +33,14 @@ Computation times
- Time
- Mem (MB)
* - :ref:`sphx_glr_examples_mapping_plot_compare_two_radars_gatemapper.py` (``plot_compare_two_radars_gatemapper.py``)
- 00:36.355
- 00:35.794
- 0.0
* - :ref:`sphx_glr_examples_mapping_plot_map_two_radars_to_grid.py` (``plot_map_two_radars_to_grid.py``)
- 00:13.578
- 00:11.507
- 0.0
* - :ref:`sphx_glr_examples_mapping_plot_map_one_radar_to_grid.py` (``plot_map_one_radar_to_grid.py``)
- 00:09.440
- 00:07.342
- 0.0
* - :ref:`sphx_glr_examples_mapping_plot_grid_single_sweep_ppi.py` (``plot_grid_single_sweep_ppi.py``)
- 00:06.009
- 00:05.742
- 0.0
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_choose_a_colormap.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ Setup a display to plot the data

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.987 seconds)
**Total running time of the script:** (0 minutes 1.956 seconds)


.. _sphx_glr_download_examples_plotting_plot_choose_a_colormap.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_cross_section.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ of your radar grid using the GridMapDisplay
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 9.161 seconds)
**Total running time of the script:** (0 minutes 8.998 seconds)


.. _sphx_glr_download_examples_plotting_plot_cross_section.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_max_cappi.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ Let's read in a cfradial file and create a grid.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 12.768 seconds)
**Total running time of the script:** (0 minutes 13.093 seconds)


.. _sphx_glr_download_examples_plotting_plot_max_cappi.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_modify_colorbar.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ and slightly overlaps the PPI display

.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 3.049 seconds)
**Total running time of the script:** (0 minutes 3.024 seconds)


.. _sphx_glr_download_examples_plotting_plot_modify_colorbar.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ of regions of melting or mixed precipitation as opposed to heavy snow or heavy r
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 4.558 seconds)
**Total running time of the script:** (0 minutes 3.598 seconds)


.. _sphx_glr_download_examples_plotting_plot_nexrad_image_muted_reflectivity.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ NEXRAD Archive file.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 4.323 seconds)
**Total running time of the script:** (0 minutes 3.809 seconds)


.. _sphx_glr_download_examples_plotting_plot_nexrad_multiple_moments.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ NEXRAD file.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.105 seconds)
**Total running time of the script:** (0 minutes 1.816 seconds)


.. _sphx_glr_download_examples_plotting_plot_nexrad_reflectivity.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_ppi_cfradial.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ An example which creates a PPI plot of a Cfradial file.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.363 seconds)
**Total running time of the script:** (0 minutes 1.355 seconds)


.. _sphx_glr_download_examples_plotting_plot_ppi_cfradial.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_ppi_mdv.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ An example which creates a PPI plot of a MDV file using a RadarDisplay object.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.140 seconds)
**Total running time of the script:** (0 minutes 2.125 seconds)


.. _sphx_glr_download_examples_plotting_plot_ppi_mdv.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_ppi_with_rings.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ and range rings
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 8.614 seconds)
**Total running time of the script:** (0 minutes 7.646 seconds)


.. _sphx_glr_download_examples_plotting_plot_ppi_with_rings.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_rhi_cfradial.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ a RadarDisplay object.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.827 seconds)
**Total running time of the script:** (0 minutes 1.813 seconds)


.. _sphx_glr_download_examples_plotting_plot_rhi_cfradial.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ a RadarDisplay object.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.772 seconds)
**Total running time of the script:** (0 minutes 1.398 seconds)


.. _sphx_glr_download_examples_plotting_plot_rhi_cfradial_singlescan.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ and adding differnential Reflectivity contours from the same MDV file.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 2.057 seconds)
**Total running time of the script:** (0 minutes 1.668 seconds)


.. _sphx_glr_download_examples_plotting_plot_rhi_contours_differential_reflectivity.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_rhi_data_overlay.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ and adding Reflectivity contours from the same MDV file.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.496 seconds)
**Total running time of the script:** (0 minutes 1.197 seconds)


.. _sphx_glr_download_examples_plotting_plot_rhi_data_overlay.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_rhi_mdv.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ An example which creates a RHI plot of a MDV file using a RadarDisplay object.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.271 seconds)
**Total running time of the script:** (0 minutes 0.905 seconds)


.. _sphx_glr_download_examples_plotting_plot_rhi_mdv.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_rhi_two_panel.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ included in the two panels are reflectivity and doppler velocity.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 0.829 seconds)
**Total running time of the script:** (0 minutes 0.823 seconds)


.. _sphx_glr_download_examples_plotting_plot_rhi_two_panel.py:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ and longitude slice using xarray and a cartopy background.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 12.953 seconds)
**Total running time of the script:** (0 minutes 9.043 seconds)


.. _sphx_glr_download_examples_plotting_plot_three_panel_gridmapdisplay.py:
Expand Down
2 changes: 1 addition & 1 deletion _sources/examples/plotting/plot_xsect.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ of PPI scans and plots both cross sections.
.. rst-class:: sphx-glr-timing

**Total running time of the script:** (0 minutes 1.380 seconds)
**Total running time of the script:** (0 minutes 1.367 seconds)


.. _sphx_glr_download_examples_plotting_plot_xsect.py:
Expand Down
Loading

0 comments on commit 431331b

Please sign in to comment.