You are reading an old version of the documentation (v2.1.1). For the latest version see https://matplotlib.org/stable/gallery/subplots_axes_and_figures/geo_demo.html
matplotlib
Fork me on GitHub


Travis-CI:

Related Topics

This Page

Geographic ProjectionsΒΆ

This shows 4 possible projections using subplot. Matplotlib also supports Basemaps Toolkit and Cartopy for geographic projections.

import matplotlib.pyplot as plt
plt.figure()
plt.subplot(111, projection="aitoff")
plt.title("Aitoff")
plt.grid(True)
../../_images/sphx_glr_geo_demo_001.png
plt.figure()
plt.subplot(111, projection="hammer")
plt.title("Hammer")
plt.grid(True)
../../_images/sphx_glr_geo_demo_002.png
plt.figure()
plt.subplot(111, projection="lambert")
plt.title("Lambert")
plt.grid(True)
../../_images/sphx_glr_geo_demo_003.png
plt.figure()
plt.subplot(111, projection="mollweide")
plt.title("Mollweide")
plt.grid(True)

plt.show()
../../_images/sphx_glr_geo_demo_004.png

Total running time of the script: ( 0 minutes 0.032 seconds)

Gallery generated by Sphinx-Gallery