.. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_source_auto_examples_plot_dsd.py: Simple Example -------------- A simple example using PyDSD. This example reads in a OTT APU Disdrometer file, calculates the radar variables, and plots a few of them. Author: Joseph C. Hardin .. image:: /source/auto_examples/images/sphx_glr_plot_dsd_001.png :alt: Drop Size Distribution :class: sphx-glr-single-img .. code-block:: default import numpy as np import matplotlib.pyplot as plt import pydsd as pyd filename = '../testdata/sgpdisdrometerC1.b1.20110427.000000_test_jwd_b1.cdf' dsd = pyd.read_arm_jwd_b1(filename) #dsd = pyd.read_parsivel_nasa_gv(filename) #Read in the Parsivel File dsd.calculate_dsd_parameterization() fig = plt.figure(figsize=(8,8)) # pyd.plot.plot_dsd(dsd) pyd.plot.plot_NwD0(dsd) plt.title('Drop Size Distribution') plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.255 seconds) .. _sphx_glr_download_source_auto_examples_plot_dsd.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_dsd.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_dsd.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_