.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/getdata/get_0_capabilities.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_auto_examples_getdata_get_0_capabilities.py: Get List of Possible Coverages ============================== Shows how to get a list of RSIG coverage that are available. The offline list is a quick reference to commonly used coverages, use offlien=False for a full list. .. GENERATED FROM PYTHON SOURCE LINES 9-24 .. code-block:: default # sphinx_gallery_thumbnail_path = '_static/getcapabilities.png' import pyrsig rsigapi = pyrsig.RsigApi() keys = rsigapi.keys() print(len(keys), keys) # 3984 (..., 'airnow.pm25', ... 'aqs.ozone', ... 'cmaq.equates.conus.aconc.O3', ... # 'hms.smoke', 'metar.wind', ... 'pandora.ozone', 'purpleair.pm25_corrected', ... # 'tropomi.offl.no2.nitrogendioxide_tropospheric_column', ... # 'viirsnoaa.jrraod.AOD550', ...) keys = rsigapi.keys(offline=False) # slow the first time print(len(keys)) # 3875 .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 0.000 seconds) .. _sphx_glr_download_auto_examples_getdata_get_0_capabilities.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: get_0_capabilities.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: get_0_capabilities.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_