.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "gallery/web_services/wmts.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_gallery_web_services_wmts.py: Interactive WMTS (Web Map Tile Service) --------------------------------------- This example demonstrates the interactive pan and zoom capability supported by an OGC web services Web Map Tile Service (WMTS) aware axes. The example WMTS layer is a single composite of data sampled over nine days in April 2012 and thirteen days in October 2012 showing the Earth at night. It does not vary over time. The imagery was collected by the Suomi National Polar-orbiting Partnership (Suomi NPP) weather satellite operated by the United States National Oceanic and Atmospheric Administration (NOAA). .. GENERATED FROM PYTHON SOURCE LINES 17-37 .. image-sg:: /gallery/web_services/images/sphx_glr_wmts_001.png :alt: Suomi NPP Earth at night April/October 2012 :srcset: /gallery/web_services/images/sphx_glr_wmts_001.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-script-out .. code-block:: none /private/tmp/circle-docs/cartopy/.env/lib/python3.10/site-packages/owslib/wmts.py:645: RuntimeWarning: TileMatrixLimits with tileMatrix "1" already exists warnings.warn(msg, RuntimeWarning) /private/tmp/circle-docs/cartopy/.env/lib/python3.10/site-packages/owslib/wmts.py:645: RuntimeWarning: TileMatrixLimits with tileMatrix "2" already exists warnings.warn(msg, RuntimeWarning) /private/tmp/circle-docs/cartopy/.env/lib/python3.10/site-packages/owslib/wmts.py:645: RuntimeWarning: TileMatrixLimits with tileMatrix "3" already exists warnings.warn(msg, RuntimeWarning) /private/tmp/circle-docs/cartopy/.env/lib/python3.10/site-packages/owslib/wmts.py:645: RuntimeWarning: TileMatrixLimits with tileMatrix "4" already exists warnings.warn(msg, RuntimeWarning) /private/tmp/circle-docs/cartopy/.env/lib/python3.10/site-packages/owslib/wmts.py:645: RuntimeWarning: TileMatrixLimits with tileMatrix "5" already exists warnings.warn(msg, RuntimeWarning) /private/tmp/circle-docs/cartopy/.env/lib/python3.10/site-packages/owslib/wmts.py:645: RuntimeWarning: TileMatrixLimits with tileMatrix "6" already exists warnings.warn(msg, RuntimeWarning) | .. code-block:: default import matplotlib.pyplot as plt import cartopy.crs as ccrs def main(): url = 'https://map1c.vis.earthdata.nasa.gov/wmts-geo/wmts.cgi' layer = 'VIIRS_CityLights_2012' fig = plt.figure() ax = fig.add_subplot(1, 1, 1, projection=ccrs.PlateCarree()) ax.add_wmts(url, layer) ax.set_extent([-15, 25, 35, 60], crs=ccrs.PlateCarree()) ax.set_title('Suomi NPP Earth at night April/October 2012') plt.show() if __name__ == '__main__': main() .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 0 minutes 3.037 seconds) .. _sphx_glr_download_gallery_web_services_wmts.py: .. only:: html .. container:: sphx-glr-footer sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: wmts.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: wmts.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_