.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "source/auto_examples/discovery/plot_asos_temp.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_source_auto_examples_discovery_plot_asos_temp.py: Query and plot ASOS data =========================================== This example shows how to plot timeseries of ASOS data from Chicago O'Hare airport. .. GENERATED FROM PYTHON SOURCE LINES 9-21 .. image-sg:: /source/auto_examples/discovery/images/sphx_glr_plot_asos_temp_001.png :alt: act_datastream temp on 20200204, act_datastream on 20200204 :srcset: /source/auto_examples/discovery/images/sphx_glr_plot_asos_temp_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none Downloading: ORD /home/runner/work/ACT/ACT/act/plotting/plot.py:81: UserWarning: Could not discern datastreamname and dict or tuple were not provided. Using defaultname of act_datastream! warnings.warn( | .. code-block:: Python from datetime import datetime import matplotlib.pyplot as plt import act time_window = [datetime(2020, 2, 4, 2, 0), datetime(2020, 2, 10, 10, 0)] my_asoses = act.discovery.get_asos_data(time_window, station='ORD', regions='IL') display = act.plotting.TimeSeriesDisplay(my_asoses['ORD'], subplot_shape=(2,), figsize=(15, 10)) display.plot('temp', subplot_index=(0,)) display.plot_barbs_from_u_v(u_field='u', v_field='v', subplot_index=(1,)) display.axes[1].set_ylim([0, 2]) plt.show() .. rst-class:: sphx-glr-timing **Total running time of the script:** (0 minutes 1.205 seconds) .. _sphx_glr_download_source_auto_examples_discovery_plot_asos_temp.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: plot_asos_temp.ipynb ` .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: plot_asos_temp.py ` .. container:: sphx-glr-download sphx-glr-download-zip :download:`Download zipped: plot_asos_temp.zip ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_